File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
components/landing-page-components/sections Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ import React from 'react';
22import LandingPageCard from '../parts/landing-page-card' ;
33import { FlipWords } from '../../../components/aceternity/flip-words' ;
44import { useIsMobile } from '../context-providers/mobile-context-provider' ;
5+ import PrimaryButton from '../parts/landing-page-button-primary' ;
6+ import SecondaryButton from '../parts/landing-page-button-secondary' ;
7+ import { INTEGRATION_REQUEST } from '@site/src/constants/landing-page-links-constants' ;
58
69const ICONS = [
710 "/landing-page/pixel_white_github_.svg" ,
@@ -65,6 +68,20 @@ const LandingPageWorkflowCard = () => {
6568 >
6669 ... and many more coming soon!
6770 </div> */ }
71+ < div
72+ className = { isMobile ?
73+ "flex flex-col gap-[1rem] pt-[1.5rem]"
74+ :
75+ "flex gap-[1rem] pt-[2rem]"
76+ }
77+ >
78+ < SecondaryButton
79+ className = "inline-flex !w-auto px-[1.5rem] py-[0.75rem]"
80+ onClick = { ( ) => window . open ( INTEGRATION_REQUEST , '_blank' ) }
81+ >
82+ Request an integration
83+ </ SecondaryButton >
84+ </ div >
6885 </ LandingPageCard >
6986 ) ;
7087} ;
Original file line number Diff line number Diff line change @@ -10,4 +10,5 @@ export const LINK_LINKEDIN = 'https://www.linkedin.com/company/dev-docs';
1010export const LINK_GITHUB = 'https://github.com/team-dev-docs' ;
1111export const HOME_PAGE = '/' ;
1212export const LINK_PRIVACY_POLICY = 'https://app.termly.io/document/privacy-policy/f93b0777-1325-40b0-b83a-e8f1fc82c82c' ;
13- export const LINK_TERMS_OF_SERVICE = 'https://app.termly.io/document/terms-of-use-for-saas/2089f33f-b962-4e79-b2c2-5d2832abb223' ;
13+ export const LINK_TERMS_OF_SERVICE = 'https://app.termly.io/document/terms-of-use-for-saas/2089f33f-b962-4e79-b2c2-5d2832abb223' ;
14+ export const INTEGRATION_REQUEST = 'https://pgdaqkquqfk.typeform.com/to/R1JwhIH6'
You can’t perform that action at this time.
0 commit comments