-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit adds a new 'Contact' section to the website. It includes various subpages designed to assist and guide users looking to get in touch. Users can now seek help through a convenient form, connect with the team in multiple ways, or reach out to the sales team directly.
- Loading branch information
Showing
21 changed files
with
743 additions
and
1,050 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import { useRouter } from 'next/router'; | ||
import { NextSeo } from 'next-seo'; | ||
import { Footer, Header } from '@nx/nx-dev/ui-common'; | ||
import { ContactLinks, HowCanWeHelp } from '@nx/nx-dev/ui-contact'; | ||
|
||
export function Contact(): JSX.Element { | ||
const router = useRouter(); | ||
|
||
return ( | ||
<> | ||
<NextSeo | ||
title="Contact us" | ||
description="There are many ways you can connect with the open-source Nx community. Let's connect together!" | ||
openGraph={{ | ||
url: 'https://nx.dev' + router.asPath, | ||
title: 'Contact us', | ||
description: | ||
"There are many ways you can connect with the open-source Nx community. Let's connect together!", | ||
images: [ | ||
{ | ||
url: 'https://nx.dev/socials/nx-media.png', | ||
width: 800, | ||
height: 421, | ||
alt: 'Nx: Smart Monorepos · Fast CI', | ||
type: 'image/jpeg', | ||
}, | ||
], | ||
siteName: 'NxDev', | ||
type: 'website', | ||
}} | ||
/> | ||
<Header /> | ||
<main id="main" role="main" className="py-24 lg:py-32"> | ||
<div> | ||
<HowCanWeHelp /> | ||
</div> | ||
<div className="mt-32"> | ||
<ContactLinks /> | ||
</div> | ||
</main> | ||
<Footer /> | ||
</> | ||
); | ||
} | ||
|
||
export default Contact; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import { useRouter } from 'next/router'; | ||
import { NextSeo } from 'next-seo'; | ||
import { Footer, Header } from '@nx/nx-dev/ui-common'; | ||
import { TalkToOurSalesTeam } from '@nx/nx-dev/ui-contact'; | ||
|
||
export function ContactSales(): JSX.Element { | ||
const router = useRouter(); | ||
|
||
return ( | ||
<> | ||
<NextSeo | ||
title="Talk to our Sales team" | ||
description="We’re here to help you find the right plan and pricing for your company constraints and requirements. We will talk about how Nx Cloud Enterprise works for your organization." | ||
openGraph={{ | ||
url: 'https://nx.dev' + router.asPath, | ||
title: 'Talk to our Sales team', | ||
description: | ||
'We’re here to help you find the right plan and pricing for your company constraints and requirements. We will talk about how Nx Cloud Enterprise works for your organization.', | ||
images: [ | ||
{ | ||
url: 'https://nx.dev/socials/nx-media.png', | ||
width: 800, | ||
height: 421, | ||
alt: 'Nx: Smart Monorepos · Fast CI', | ||
type: 'image/jpeg', | ||
}, | ||
], | ||
siteName: 'NxDev', | ||
type: 'website', | ||
}} | ||
/> | ||
<Header /> | ||
<main id="main" role="main" className="py-24 lg:py-32"> | ||
<div> | ||
<TalkToOurSalesTeam /> | ||
</div> | ||
</main> | ||
<Footer /> | ||
</> | ||
); | ||
} | ||
|
||
export default ContactSales; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.