Pricing Tiers
Three bordered tiers with a monthly/annual segmented toggle; the featured tier has a blue top bar and “Most popular” badge; enterprise shows “Custom”.
neo-corporate/section/pricing-tiersSource
"use client";
import { useState } from "react";
import { Check } from "lucide-react";
import { cn } from "@/lib/utils";
export interface PricingTiersPlan {
name: string;
description: string;
monthly: number | null;
annual: number | null;
unit: string;
features: string[];
cta: { label: string; href: string };
featured?: boolean;
}
export interface PricingTiersProps {
eyebrow?: string;
title?: string;
plans?: PricingTiersPlan[];
className?: string;
}
const DEFAULT_PLANS: PricingTiersPlan[] = [
{
name: "Starter",
description: "For small teams sending their first invoices.",
monthly: 49,
annual: 39,
unit: "per month",
features: ["Up to 100 invoices / mo", "Card & ACH payments", "Automatic reminders", "QuickBooks & Xero sync"],
cta: { label: "Start free trial", href: "#starter" },
},
{
name: "Growth",
description: "For finance teams scaling collections.",
monthly: 199,
annual: 159,
unit: "per month",
features: ["Unlimited invoices", "Bank reconciliation", "Approval workflows", "NetSuite sync", "Priority support"],
cta: { label: "Start free trial", href: "#growth" },
featured: true,
},
{
name: "Enterprise",
description: "For multi-entity organizations.",
monthly: null,
annual: null,
unit: "annual contract",
features: ["Multi-entity & intercompany", "SSO, SCIM & audit logs", "Custom approval rules", "Dedicated CSM & SLA"],
cta: { label: "Contact sales", href: "#sales" },
},
];
/** Three bordered tiers with a monthly/annual segmented toggle; the featured tier has a blue top bar and “Most popular” badge; enterprise shows “Custom”. */
export function PricingTiers({ eyebrow = "Pricing", title = "Plans that scale with your finance team", plans = DEFAULT_PLANS, className }: PricingTiersProps) {
const [annual, setAnnual] = useState(true);
return (
<section aria-labelledby="nc-tiers-title" className={cn("da-section bg-da-bg text-da-fg", className)}>
<div className="da-container">
<div className="mx-auto max-w-2xl text-center">
<p className="text-xs font-semibold tracking-da-label text-da-primary uppercase">{eyebrow}</p>
<h2 id="nc-tiers-title" className="mt-3 font-da-display text-[clamp(2rem,4.5vw,3rem)] leading-[1.1] font-extrabold tracking-da-display text-balance">
{title}
</h2>
<div role="group" aria-label="Billing period" className="da-stroke mx-auto mt-8 inline-flex rounded-da-md bg-da-surface-2 p-1">
{[
{ v: false, l: "Monthly" },
{ v: true, l: "Annual (save 20%)" },
].map((o) => (
<button
key={o.l}
type="button"
aria-pressed={annual === o.v}
onClick={() => setAnnual(o.v)}
className={cn(
"da-focus da-transition rounded-da-sm px-4 py-1.5 text-sm font-semibold",
annual === o.v ? "bg-da-surface shadow-da-sm" : "text-da-muted-fg",
)}
>
{o.l}
</button>
))}
</div>
</div>
<ul className="mx-auto mt-12 grid max-w-5xl gap-4 lg:grid-cols-3">
{plans.map((p) => {
const price = annual ? p.annual : p.monthly;
return (
<li
key={p.name}
className={cn(
"da-stroke relative flex flex-col overflow-hidden rounded-da-lg bg-da-surface p-7 text-da-surface-fg",
p.featured && "border-da-primary shadow-da-lg",
)}
>
{p.featured && <span aria-hidden className="absolute inset-x-0 top-0 h-1 bg-da-primary" />}
<div className="flex items-center justify-between">
<h3 className="font-da-display text-xl font-bold">{p.name}</h3>
{p.featured && <span className="rounded-da-pill bg-da-accent px-2.5 py-0.5 text-xs font-semibold text-da-accent-fg">Most popular</span>}
</div>
<p className="mt-2 text-sm text-da-muted-fg">{p.description}</p>
<p className="mt-6">
<span className="font-da-display text-4xl font-extrabold tracking-da-display">{price === null ? "Custom" : `$${price}`}</span>
<span className="ml-1 text-sm text-da-muted-fg">{p.unit}</span>
</p>
<a
href={p.cta.href}
className={cn(
"da-focus da-transition mt-6 inline-flex h-11 items-center justify-center rounded-da-md font-semibold",
p.featured ? "bg-da-primary text-da-primary-fg hover:bg-da-primary/90" : "da-stroke hover:border-da-border-strong hover:bg-da-surface-2",
)}
>
{p.cta.label}
</a>
<ul className="mt-7 space-y-3 border-t border-da-border pt-6 text-[15px]">
{p.features.map((f) => (
<li key={f} className="flex items-start gap-2.5">
<Check aria-hidden className="mt-0.5 size-4 shrink-0 text-da-primary" strokeWidth={3} />
{f}
</li>
))}
</ul>
</li>
);
})}
</ul>
</div>
</section>
);
}
export default PricingTiers;
modules/neo-corporate/section/pricing-tiers/index.tsx
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | — | Small label above the heading. |
| title | string | — | Heading. |
| plans | PricingTiersPlan[] | — | Plans. |
| className | string | — | Extra classes on the root. |
Other pricing variants in Neo Corporate
Pricing Fees
Pay-as-you-go fee sheet: big per-method rates in bordered cells (4-up), then a “no hidden fees” checklist band.
Pricing Matrix
Enterprise feature matrix: sticky-looking header row of plans, grouped rows with section headings, checks/dashes/values and a tinted featured column.
Pricing Volume
Volume-based fee calculator: stepped slider of monthly payment volume, the blended rate tier highlighted in a tier table, and an estimated monthly fee vs. a typical 2.9% processor.
Pricing in other art directions
Pricing Comparison
Full feature matrix: ruled table with plan headers (price + CTA, highlighted plan in yellow), ink group separator rows and check / dash / text values, horizontally scrollable on mobile.
Pricing Single
Single-plan pricing card: giant price on a yellow panel, numbered feature grid on paper, full-width ink CTA, guarantee line and a rotated pink discount sticker.
Pricing Slider
Usage-based pricing calculator: chunky range slider with a square yellow thumb, live per-unit and total price (volume tiers), included-features list and an ink CTA bar.
Pricing Tiers
Three plans glued together in one ruled strip, the highlighted plan pops out in solid yellow with a rotated badge. Monthly/yearly toggle with discount chip, custom-price plan support.
Pricing Credits
Pay-as-you-go pricing: four glass radio cards of recording-hour packs (tags like Popular / Best value) feeding a gradient summary card with price, per-hour cost, inclusions and CTA.
Pricing Duo
Free vs paid in one glass panel: two plan headers with price and CTA over a shared feature table (checks, dashes, values); the paid column is tinted with a soft gradient and a gradient CTA.
Pricing Frosted
Three frosted pricing cards with a pill billing toggle; the featured plan gets a gradient frame, gradient badge and gradient CTA and stands slightly taller. Per-seat units and custom pricing supported.
Pricing Spotlight
Single-plan pricing: a wide glass card split into a gradient price block (plan, big price, CTA, sales link) and a two-column feature list with a money-back guarantee and customer wordmarks.
Pricing Columns
Three quiet pricing columns with a segmented monthly/yearly control, per-seat units, and a featured plan lifted by a ring, soft shadow and an indigo hairline highlight on top.
Pricing Rows
Plans stacked as full-width horizontal rows (name + description, highlight chips, price, CTA), the featured one ringed in indigo, followed by an inverted ink enterprise strip.
Pricing Table
Full plan comparison table: four plan columns with price and CTA in the header, grouped feature rows with checks, dashes or values, featured column tinted; horizontally scrollable on small screens.
Pricing Usage
Seat-based pricing calculator: range slider for responders, four volume tiers with the active one highlighted, monthly/yearly toggle and a live estimated total panel with inclusions and CTA.
Pricing Columns
Three plan columns separated by hairlines (no cards): mono plan name, huge price, note, ruled feature list and a button; the featured plan has an ink button and a signal dot.
Pricing One
Single-price poster: a gigantic price set in the display face across the left, and on the right a short pitch, a two-column “included” list with en-dashes and an ink CTA; separated by a full-ink rule.
Pricing Table
Plain typographic comparison table: ink header rule, mono column heads, hairline rows, em-dash for absent features, and the featured column marked with a signal dot.
Pricing Toggle
Pricing as a ruled list: a text toggle “Monthly / Yearly (−20%)” with an underline on the active option, then one row per plan — name, blurb, price, arrow link — rows invert on hover.
Pricing Compare
Soft comparison table: rounded card, plan names in serif with prices, zebra rows in warm tints, sage check circles and dashes, highlighted featured column.
Pricing Single
One honest plan: a wide rounded card split into a sage-tinted price side (big serif price, CTA, guarantee) and a two-column “everything included” list.
Pricing Team
Team-size calculator: a warm range slider (10–500 people) drives a big serif monthly price, annual saving line and a sapling illustration that grows with team size.
Pricing Tiers
Three rounded plans on cream; the middle one sits on a deep sage card (inverted colors) lifted slightly higher, with a leaf ribbon; checklists use soft tinted checks.
Pricing Cards
Three rounded plan cards with emoji (Sprout, Bloom, Forest), a pill monthly/yearly toggle, mint tick lists, and the featured plan filled in lavender with a tilted butter “Most loved” sticker.
Pricing Compare
Rounded comparison table inside a white card: soft zebra rows, round mint check and grey dash badges, and a lavender featured column with rounded head.
Pricing Duo
Two big plan blocks side by side: a mint “Free” block and a periwinkle “Pro” block with light text, huge rounded prices, round-tick feature lists and contrasting pill CTAs.
Pricing Team
Team-size price calculator: big round −/+ stepper around an editable number, avatar dots popping in for each person (paid seats ringed), and a butter summary card with the live monthly total.