Skip to content

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.

brutalist/section/pricing-single
Open ↗

Source

import { cn } from "@/lib/utils";

export interface PricingSingleProps {
  kicker?: string;
  title?: string;
  price?: string;
  period?: string;
  description?: string;
  features?: string[];
  cta?: { label: string; href: string };
  guarantee?: string;
  sticker?: string;
  className?: string;
}

export function PricingSingle({
  kicker = "[ 04 ] Pricing",
  title = "One plan. Everything in it.",
  price = "$39",
  period = "per month, per workspace",
  description = "No tiers, no seat math, no feature gates. Every workspace gets the whole of Shipyard.",
  features = [
    "Unlimited projects & releases",
    "AI release summaries",
    "In-app widget & public changelog",
    "Email, Slack & Teams digests",
    "24 languages",
    "Custom domain & SSO",
  ],
  cta = { label: "Start 14-day free trial", href: "#trial" },
  guarantee = "Cancel anytime · 30-day money-back guarantee",
  sticker = "−20% yearly",
  className,
}: PricingSingleProps) {
  return (
    <section className={cn("da-section da-stroke-b bg-da-bg text-da-fg", className)} aria-labelledby="pricing-single-title">
      <div className="da-container">
        <div className="text-center">
          <p className="font-da-mono text-xs font-bold tracking-da-label text-da-muted-fg uppercase">{kicker}</p>
          <h2 id="pricing-single-title" className="mt-3 font-da-display text-[clamp(2rem,5vw,3.5rem)] leading-[0.95] tracking-da-display uppercase">
            {title}
          </h2>
        </div>

        <div className="relative mx-auto mt-14 max-w-4xl">
          {sticker && (
            <p className="da-stroke absolute -top-6 -right-2 z-10 rotate-6 bg-da-accent px-4 py-2 font-da-display text-lg tracking-da-display text-da-accent-fg uppercase shadow-da-sm sm:-right-6">
              {sticker}
            </p>
          )}
          <div className="da-stroke grid bg-da-surface text-da-surface-fg shadow-da-lg md:grid-cols-[1fr_1.2fr]">
            <div className="flex flex-col justify-between gap-8 bg-da-primary p-8 text-da-primary-fg sm:p-10 md:da-stroke-r">
              <div>
                <p className="font-da-display text-[5rem] leading-none tracking-da-display sm:text-[6.5rem]">{price}</p>
                <p className="mt-2 font-da-mono text-sm font-bold uppercase">{period}</p>
              </div>
              <p className="text-lg font-medium">{description}</p>
            </div>
            <div className="flex flex-col p-8 sm:p-10">
              <ul className="grid gap-4 sm:grid-cols-2">
                {features.map((f, i) => (
                  <li key={f} className="flex items-start gap-3 font-bold">
                    <span aria-hidden className="font-da-mono text-xs text-da-muted-fg">
                      {String(i + 1).padStart(2, "0")}
                    </span>
                    {f}
                  </li>
                ))}
              </ul>
              <a
                href={cta.href}
                className="da-focus da-transition da-stroke mt-10 block bg-da-fg px-6 py-4 text-center text-lg font-bold text-da-bg shadow-da-md hover:translate-x-[6px] hover:translate-y-[6px] hover:shadow-none"
              >
                {cta.label}
              </a>
              <p className="mt-4 text-center font-da-mono text-xs font-bold text-da-muted-fg">{guarantee}</p>
            </div>
          </div>
        </div>
      </div>
    </section>
  );
}

export default PricingSingle;

modules/brutalist/section/pricing-single/index.tsx

Props

PropTypeDefaultDescription
kicker / titlestring—Header copy.
price / periodstring"$39" / "per month, per workspace"Price and its unit.
descriptionstring—Paragraph under the price.
featuresstring[]—Included features.
cta{ label: string; href: string }—Call to action.
guaranteestring—Reassurance line.
stickerstring—Rotated sticker (empty hides it).
classNamestring—Classes on the <section>.

Other pricing variants in Brutalist

Pricing in other art directions

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.

GlassPricing

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.

GlassPricing

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.

GlassPricing

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.

GlassPricing

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.

MinimalPricing

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.

MinimalPricing

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.

MinimalPricing

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.

MinimalPricing

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.

Mono CleanPricing

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.

Mono CleanPricing

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.

Mono CleanPricing

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.

Mono CleanPricing

Pricing Fees

Pay-as-you-go fee sheet: big per-method rates in bordered cells (4-up), then a “no hidden fees” checklist band.

Neo CorporatePricing

Pricing Matrix

Enterprise feature matrix: sticky-looking header row of plans, grouped rows with section headings, checks/dashes/values and a tinted featured column.

Neo CorporatePricing

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 CorporatePricing

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.

Neo CorporatePricing

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.

Organic SoftPricing

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.

Organic SoftPricing

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.

Organic SoftPricing

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.

Organic SoftPricing

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.

Soft FlatPricing

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.

Soft FlatPricing

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.

Soft FlatPricing

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.

Soft FlatPricing