feat(nx-dev): update text on enterprise & contact screens (#26416)

Adjusted the Contact Us wording and changed the primary contact link on the website from sales to engineering. The sales link is also presented with a more engaging prompt.
This commit is contained in:
Benjamin Cabanes 2024-06-06 10:16:25 -04:00 committed by GitHub
parent d2f4bdf254
commit 7b1073ebb5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 33 additions and 38 deletions

View File

@ -26,9 +26,8 @@ export function HowCanWeHelp(): JSX.Element {
</h3> </h3>
</div> </div>
<p className="mt-4"> <p className="mt-4">
Contact our sales team to discuss plans, expected usage, Contact our sales team to discuss pricing, terms, certifications,
certifications, organization constraints, and get the best pricing and your unique constraints.
for your team.
</p> </p>
<ButtonLink <ButtonLink
href="/contact/sales" href="/contact/sales"
@ -51,8 +50,8 @@ export function HowCanWeHelp(): JSX.Element {
</h3> </h3>
</div> </div>
<p className="mt-4"> <p className="mt-4">
Contact our developer productivity engineers team for demos, Contact our developer productivity engineers for demos, onboarding
onboarding assistance, and technical product questions. assistance, and technical product questions.
</p> </p>
<ButtonLink <ButtonLink
href="/contact/engineering" href="/contact/engineering"

View File

@ -57,19 +57,25 @@ export function CallToAction(): JSX.Element {
<br /> <br />
starts now starts now
</h2> </h2>
<div className="mt-10 flex items-center justify-center gap-x-6"> <div className="mt-10">
<Link
href="/contact/sales"
className="rounded-md bg-slate-950 px-3.5 py-2.5 text-sm font-semibold text-slate-100 shadow-sm hover:bg-slate-800 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white dark:bg-white dark:text-slate-900 dark:hover:bg-slate-100"
>
Contact sales
</Link>
<Link <Link
href="/contact/engineering" href="/contact/engineering"
title="Talk to the engineering team"
className="rounded-md bg-slate-950 px-3.5 py-2.5 text-sm font-semibold text-slate-100 shadow-sm hover:bg-slate-800 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white dark:bg-white dark:text-slate-900 dark:hover:bg-slate-100" className="rounded-md bg-slate-950 px-3.5 py-2.5 text-sm font-semibold text-slate-100 shadow-sm hover:bg-slate-800 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white dark:bg-white dark:text-slate-900 dark:hover:bg-slate-100"
> >
Contact engineers Talk to engineering
</Link> </Link>
<p className="mt-6 italic">
Ready to talk terms?{' '}
<Link
href="/contact/sales"
title="Talk to the sales team"
className="font-semibold underline"
>
Speak directly to sales
</Link>
.
</p>
</div> </div>
</div> </div>
</section> </section>

View File

@ -1,5 +1,6 @@
import { SectionHeading } from './temp/typography'; import { SectionHeading } from './temp/typography';
import { ButtonLink } from '@nx/nx-dev/ui-common'; import { ButtonLink } from '@nx/nx-dev/ui-common';
import Link from 'next/link';
export function Hero(): JSX.Element { export function Hero(): JSX.Element {
return ( return (
@ -17,37 +18,26 @@ export function Hero(): JSX.Element {
Accelerate your organization's journey to tighter collaboration, Accelerate your organization's journey to tighter collaboration,
better developer experience, and speedlots of speed. better developer experience, and speedlots of speed.
</SectionHeading> </SectionHeading>
<div className="mt-10 flex items-center justify-center gap-x-6"> <div className="mt-10">
<ButtonLink
href="/contact/sales"
title="Contact sales"
variant="primary"
size="default"
>
Contact sales
</ButtonLink>
<ButtonLink <ButtonLink
href="/contact/engineering" href="/contact/engineering"
title="Contact sales" title="Talk to the engineering team"
variant="primary" variant="primary"
size="default" size="default"
> >
Contact engineers Talk to engineering
</ButtonLink> </ButtonLink>
<p className="mt-6 italic">
{/*<Link*/} Ready to talk terms?{' '}
{/* className="group text-sm font-semibold leading-6 text-slate-950 dark:text-white"*/} <Link
{/* href="/contact/sales"*/} href="/contact/sales"
{/* rel="nofollow"*/} title="Talk to the sales team"
{/*>*/} className="font-semibold underline"
{/* Book a demo{' '}*/} >
{/* <span*/} Speak directly to sales
{/* aria-hidden="true"*/} </Link>
{/* className="inline-block transition group-hover:translate-x-1"*/} .
{/* >*/} </p>
{/* →*/}
{/* </span>*/}
{/*</Link>*/}
</div> </div>
</div> </div>
</div> </div>