Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(nx-dev): add nx powerpack to pricing page #28232

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions nx-dev/ui-pricing/src/lib/plans/enterprise-plan.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,24 @@ export function EnterprisePlan({
outputs.
</p>
</li>
<li className="flex gap-x-3">
<CheckIcon
className="h-6 w-5 flex-none text-blue-600 dark:text-sky-600"
aria-hidden="true"
/>
<p>
<Link
href="/powerpack"
title="Learn more about Nx Powerpack"
prefetch={false}
className="font-medium text-slate-700 underline dark:text-slate-300"
>
Nx Powerpack
</Link>
: a suite of premium extensions for the Nx CLI specifically designed
for enterprises.
</p>
</li>
</ul>
</article>
);
Expand Down
23 changes: 22 additions & 1 deletion nx-dev/ui-pricing/src/lib/plans/plan-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ export function PlanTable(): JSX.Element {
<span className="font-medium text-slate-700 dark:text-slate-300">
Nx Agents
</span>
: native task distribution solution for CI{' '}
: native task distribution solution for CI
</th>
<td className="border-l border-t border-slate-200 px-2 py-1.5 md:px-3 lg:px-4 lg:py-2.5 dark:border-slate-800">
<CheckIcon
Expand Down Expand Up @@ -557,6 +557,27 @@ export function PlanTable(): JSX.Element {
<span className="sr-only">yes</span>
</td>
</tr>
<tr className="text-sm transition hover:bg-slate-50/60 dark:hover:bg-slate-800/60">
<th
className="min-w-[124px] border-l border-t border-slate-200 px-2 py-1.5 text-left font-normal leading-tight md:min-w-[180px] md:p-2 md:px-3 lg:w-[325px] lg:px-4 lg:py-2.5 lg:pl-8 dark:border-slate-800"
scope="row"
>
<span className="font-medium text-slate-700 dark:text-slate-300">
Nx Powerpack
</span>
: a suite of premium extensions for the Nx CLI specifically
designed for enterprises
</th>
<td className="border-l border-t border-slate-200 px-2 py-1.5 md:px-3 lg:px-4 lg:py-2.5 dark:border-slate-800">
Sold separately
</td>
<td className="border-l border-t border-slate-200 px-2 py-1.5 md:px-3 lg:px-4 lg:py-2.5 dark:border-slate-800">
Sold separately
</td>
<td className="border-l border-r border-t border-slate-200 bg-slate-50/60 px-2 py-1.5 md:px-3 lg:px-4 lg:py-2.5 dark:border-slate-800 dark:bg-slate-800/60">
Included
</td>
</tr>
<tr className="text-sm transition hover:bg-slate-50/60 dark:hover:bg-slate-800/60">
<th
className="min-w-[124px] border-l border-t border-slate-200 px-2 py-1.5 text-left font-normal leading-tight md:min-w-[180px] md:p-2 md:px-3 lg:w-[325px] lg:px-4 lg:py-2.5 lg:pl-8 dark:border-slate-800"
Expand Down