<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
53 lines
1.2 KiB
TypeScript
53 lines
1.2 KiB
TypeScript
import { DefaultLayout } from '@nx/nx-dev/ui-common';
|
|
import {
|
|
CallToAction,
|
|
GetStarted,
|
|
Hero,
|
|
PowerpackFeatures,
|
|
} from '@nx/nx-dev/ui-powerpack';
|
|
|
|
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Nx Powerpack',
|
|
description:
|
|
'Nx Powerpack is a suite of paid extensions for the Nx CLI specifically designed for enterprises.',
|
|
openGraph: {
|
|
url: 'https://nx.dev/powerpack',
|
|
title: 'Nx Powerpack',
|
|
description:
|
|
'Nx Powerpack is a suite of paid extensions for the Nx CLI specifically designed for enterprises.',
|
|
images: [
|
|
{
|
|
url: 'https://nx.dev/socials/nx-powerpack-media.png',
|
|
width: 800,
|
|
height: 421,
|
|
alt: 'Nx Powerpack: Advanced tools for enterprises',
|
|
type: 'image/jpeg',
|
|
},
|
|
],
|
|
siteName: 'Nx',
|
|
type: 'website',
|
|
},
|
|
};
|
|
|
|
export default function NxPowerPackPage(): JSX.Element {
|
|
return (
|
|
<DefaultLayout>
|
|
<Hero />
|
|
|
|
<div className="mt-32 scroll-mt-32 lg:mt-56" id="features">
|
|
<PowerpackFeatures />
|
|
</div>
|
|
|
|
<div className="mt-32 scroll-mt-32 lg:mt-56">
|
|
<GetStarted />
|
|
</div>
|
|
|
|
<div className="mt-32 lg:mt-56">
|
|
<CallToAction />
|
|
</div>
|
|
</DefaultLayout>
|
|
);
|
|
}
|