docs(nx-dev): add credit pricing section (#28946)
It renames the ResourceClasses component to CreditPricing and updates its references throughout the application. It also includes additional non-compute pricing information and a more detailed breakdown of credit costs associated with various CI/CD operations for Nx Cloud.
This commit is contained in:
parent
88017bb96c
commit
2d5acec2d1
@ -2,7 +2,7 @@ import type { Metadata } from 'next';
|
|||||||
import {
|
import {
|
||||||
Faq,
|
Faq,
|
||||||
Oss,
|
Oss,
|
||||||
ResourceClasses,
|
CreditPricing,
|
||||||
PlansDisplay,
|
PlansDisplay,
|
||||||
TrialCallout,
|
TrialCallout,
|
||||||
} from '@nx/nx-dev/ui-pricing';
|
} from '@nx/nx-dev/ui-pricing';
|
||||||
@ -47,7 +47,7 @@ export default function PricingPage() {
|
|||||||
<TrialCallout pageId="pricing" />
|
<TrialCallout pageId="pricing" />
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-32 lg:mt-56">
|
<div className="mt-32 lg:mt-56">
|
||||||
<ResourceClasses />
|
<CreditPricing />
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-32 lg:mt-56">
|
<div className="mt-32 lg:mt-56">
|
||||||
<Faq />
|
<Faq />
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
export * from './lib/faq';
|
export * from './lib/faq';
|
||||||
export * from './lib/oss';
|
export * from './lib/oss';
|
||||||
export * from './lib/plans-display';
|
export * from './lib/plans-display';
|
||||||
export * from './lib/resource-classes';
|
export * from './lib/credit-pricing';
|
||||||
export * from './lib/trial-callout';
|
export * from './lib/trial-callout';
|
||||||
|
|||||||
@ -2,6 +2,16 @@ import { ReactElement } from 'react';
|
|||||||
import { LinuxIcon, WindowsIcon } from '@nx/nx-dev/ui-icons';
|
import { LinuxIcon, WindowsIcon } from '@nx/nx-dev/ui-icons';
|
||||||
import { SectionDescription, SectionHeading } from '@nx/nx-dev/ui-common';
|
import { SectionDescription, SectionHeading } from '@nx/nx-dev/ui-common';
|
||||||
|
|
||||||
|
const nonComputeItems = [
|
||||||
|
{
|
||||||
|
name: 'CI Pipeline Execution',
|
||||||
|
description:
|
||||||
|
'A CI Pipeline Execution is a CI run or a Workflow run (depending on your CI provider). For instance, running a PR or running CI on the main branch are CI Pipeline Executions.',
|
||||||
|
creditCost: 500,
|
||||||
|
suffix: 'execution',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
const linuxAmd64 = [
|
const linuxAmd64 = [
|
||||||
{
|
{
|
||||||
icon: <LinuxIcon aria-hidden="true" className="size-6" />,
|
icon: <LinuxIcon aria-hidden="true" className="size-6" />,
|
||||||
@ -77,7 +87,7 @@ const windows = [
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export function ResourceClasses(): ReactElement {
|
export function CreditPricing(): ReactElement {
|
||||||
return (
|
return (
|
||||||
<section
|
<section
|
||||||
id="resource-classes"
|
id="resource-classes"
|
||||||
@ -86,15 +96,47 @@ export function ResourceClasses(): ReactElement {
|
|||||||
<header>
|
<header>
|
||||||
<div className="mx-auto max-w-4xl text-center">
|
<div className="mx-auto max-w-4xl text-center">
|
||||||
<SectionHeading as="h2" variant="title">
|
<SectionHeading as="h2" variant="title">
|
||||||
Agents resource classes
|
Credit pricing
|
||||||
</SectionHeading>
|
|
||||||
<SectionHeading as="p" variant="subtitle" className="mt-6">
|
|
||||||
Credits are the Nx Cloud currency allowing for usage-based pricing.
|
|
||||||
</SectionHeading>
|
</SectionHeading>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<div className="mx-auto mt-10 max-w-full space-y-12 sm:mt-20">
|
<div className="mx-auto mt-10 max-w-full space-y-12 sm:mt-20">
|
||||||
|
<SectionHeading as="h3" variant="subtitle">
|
||||||
|
Non-compute pricing
|
||||||
|
</SectionHeading>
|
||||||
|
<div>
|
||||||
|
<ul role="list" className="mt-4 space-y-4 sm:space-y-6">
|
||||||
|
{nonComputeItems.map((project) => (
|
||||||
|
<li
|
||||||
|
key={project.name}
|
||||||
|
className="col-span-1 flex overflow-hidden rounded-md border border-slate-200 shadow-sm dark:border-slate-800"
|
||||||
|
>
|
||||||
|
<div className="flex flex-1 items-center justify-between bg-white dark:bg-slate-900">
|
||||||
|
<div className="flex-1 px-4 py-2 text-sm">
|
||||||
|
<span className="font-medium text-slate-900 dark:text-slate-100">
|
||||||
|
{project.name}
|
||||||
|
</span>
|
||||||
|
<p className="text-xs text-slate-500">
|
||||||
|
{project.description}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div className="shrink-0 pr-4 text-sm font-semibold">
|
||||||
|
<span>
|
||||||
|
{new Intl.NumberFormat('en-US', {
|
||||||
|
style: 'decimal',
|
||||||
|
}).format(project.creditCost)}{' '}
|
||||||
|
credits/{project.suffix}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<SectionHeading as="h3" variant="subtitle">
|
||||||
|
Agents resource classes
|
||||||
|
</SectionHeading>
|
||||||
<div>
|
<div>
|
||||||
<SectionDescription as="h3">Docker / Linux AMD64</SectionDescription>
|
<SectionDescription as="h3">Docker / Linux AMD64</SectionDescription>
|
||||||
<ul
|
<ul
|
||||||
@ -119,7 +161,12 @@ export function ResourceClasses(): ReactElement {
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="shrink-0 pr-4 text-sm font-semibold">
|
<div className="shrink-0 pr-4 text-sm font-semibold">
|
||||||
<span>{project.creditCost} credits/min</span>
|
<span>
|
||||||
|
{new Intl.NumberFormat('en-US', {
|
||||||
|
style: 'decimal',
|
||||||
|
}).format(project.creditCost)}{' '}
|
||||||
|
credits/min
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
@ -59,7 +59,7 @@ export function Faq(): ReactElement {
|
|||||||
{
|
{
|
||||||
question: 'What is a CI Pipeline Execution?',
|
question: 'What is a CI Pipeline Execution?',
|
||||||
answer:
|
answer:
|
||||||
'By default, a CI pipeline execution is a 1:1 match to your CI provider of choice\'s concept of a "workflow".',
|
'A CI Pipeline Execution is a CI run or a Workflow run (depending on your CI provider). For instance, running a PR or running CI on the main branch are CI Pipeline Executions.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
question: 'What is the Team Plan?',
|
question: 'What is the Team Plan?',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user