Skip to content

Commit 32027d5

Browse files
committed
integration added
1 parent 8e0c679 commit 32027d5

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

src/components/landing-page-components/sections/landing-page-workflow-card.jsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ import React from 'react';
22
import LandingPageCard from '../parts/landing-page-card';
33
import { FlipWords } from '../../../components/aceternity/flip-words';
44
import { 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

69
const 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
};

src/constants/landing-page-links-constants.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ export const LINK_LINKEDIN = 'https://www.linkedin.com/company/dev-docs';
1010
export const LINK_GITHUB = 'https://github.com/team-dev-docs';
1111
export const HOME_PAGE = '/';
1212
export 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'

0 commit comments

Comments
 (0)