nx/nx-dev/ui-common/src/lib/trusted-by.tsx
Nicholas Cunningham a0ca85841f
feat(nx-dev): Migrate pricing page from nx.app (#27012)
Co-authored-by: Juri <juri.strumpflohner@gmail.com>
2024-07-25 10:14:51 -04:00

136 lines
4.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Link from 'next/link';
import { SectionDescription, SectionHeading } from './typography';
import {
AdobeIcon,
AwsIcon,
CiscoIcon,
CypressIcon,
FedExIcon,
HiltonIcon,
IntelIcon,
MicrosoftIcon,
RedBullIcon,
RxJSIcon,
SentryIcon,
SevenElevenIcon,
ShopifyIcon,
StorybookIcon,
StrapiIcon,
VmwareIcon,
} from '@nx/nx-dev/ui-icons';
export interface TrustedByProps {
utmSource?: string;
utmCampaign?: string;
}
export function TrustedBy({
utmSource = 'homepage',
utmCampaign = 'homepage_links',
}: TrustedByProps): JSX.Element {
return (
<article className="mx-auto max-w-7xl px-6 lg:px-8">
<div className="text-center">
<SectionHeading
as="h2"
variant="subtitle"
id="trusted"
className="scroll-mt-24 font-medium tracking-tight text-slate-950 sm:text-3xl dark:text-white"
>
Trusted by leading OSS projects and Fortune 500 companies.
</SectionHeading>
<SectionDescription as="p" className="mt-2">
We developed Nx to be modular and incrementally adoptable to meet you
where youre at.
</SectionDescription>
</div>
<div className="relative mt-12">
<div className="grid grid-cols-3 place-items-center items-center gap-6 transition-all sm:grid-cols-4 md:grid-cols-6 lg:grid-cols-8">
<MicrosoftIcon
aria-hidden="true"
className="h-10 w-10 text-slate-950 dark:text-white"
/>
<AwsIcon
aria-hidden="true"
className="h-14 w-14 text-slate-950 dark:text-white"
/>
<AdobeIcon
aria-hidden="true"
className="h-10 w-10 text-slate-950 dark:text-white"
/>
<IntelIcon
aria-hidden="true"
className="hidden h-16 w-16 text-slate-950 sm:block dark:text-white"
/>
<CiscoIcon
aria-hidden="true"
className="hidden h-16 w-16 text-slate-950 md:block dark:text-white"
/>
<VmwareIcon
aria-hidden="true"
className="hidden h-24 w-24 text-slate-950 md:block dark:text-white"
/>
<FedExIcon
aria-hidden="true"
className="hidden h-20 w-20 text-slate-950 md:block dark:text-white"
/>
<HiltonIcon
aria-hidden="true"
className="hidden h-20 w-20 text-slate-950 md:block dark:text-white"
/>
<SevenElevenIcon
aria-hidden="true"
className="hidden h-10 w-10 text-slate-950 lg:block dark:text-white"
/>
<RedBullIcon
aria-hidden="true"
className="hidden h-20 w-20 text-slate-950 lg:block dark:text-white"
/>
<StorybookIcon
aria-hidden="true"
className="h-10 w-10 text-slate-950 dark:text-white"
/>
<StrapiIcon
aria-hidden="true"
className="hidden h-10 w-10 text-slate-950 lg:block dark:text-white"
/>
<CypressIcon
aria-hidden="true"
className="hidden h-12 w-12 text-slate-950 sm:block dark:text-white"
/>
<SentryIcon
aria-hidden="true"
className="h-16 w-16 text-slate-950 dark:text-white"
/>
<RxJSIcon
aria-hidden="true"
className="hidden h-10 w-10 text-slate-950 lg:block dark:text-white"
/>
<ShopifyIcon
aria-hidden="true"
className="h-10 w-10 text-slate-950 dark:text-white"
/>
</div>
<div className="mt-8 text-center">
<Link
href={`/customers?utm_source=${utmSource}&utm_medium=website&utm_campaign=${utmCampaign}&utm_content=our_customers`}
title="Our customers"
prefetch={false}
className="group font-semibold leading-6 text-slate-950 transition-all duration-200 dark:text-white"
>
Learn about our customers{' '}
<span
aria-hidden="true"
className="inline-block transition group-hover:translate-x-1"
>
</span>
</Link>
</div>
</div>
</article>
);
}