nx/nx-dev/nx-dev/pages/partners.tsx
Benjamin Cabanes 1e30f3d148
chore(nx-dev): update tagline across projects (#31318)
Aligned all instances of the tagline. Changes include documentation, metadata, UI content, test assertions, and other project assets.
2025-05-23 16:20:35 -04:00

45 lines
1.1 KiB
TypeScript

import { DefaultLayout } from '@nx/nx-dev/ui-common';
import { Hero, PartnersList } from '@nx/nx-dev/ui-partners';
import { NextSeo } from 'next-seo';
import { useRouter } from 'next/router';
import { contactButton } from '../lib/components/headerCtaConfigs';
export function Partners(): JSX.Element {
const router = useRouter();
return (
<>
<NextSeo
title="Our Partners"
description="Partner"
openGraph={{
url: 'https://nx.dev' + router.asPath,
title: 'Partners',
description: 'Partner ',
images: [
{
url: 'https://nx.dev/socials/nx-media.png',
width: 800,
height: 421,
alt: 'Nx: Smart Repos · Fast Builds',
type: 'image/jpeg',
},
],
siteName: 'Nx',
type: 'website',
}}
/>
<DefaultLayout headerCTAConfig={[contactButton]}>
<div>
<Hero />
</div>
<div className="mt-16">
<PartnersList />
</div>
</DefaultLayout>
</>
);
}
export default Partners;