Skip to content

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-soft/section/pricing-compare
Open ↗

Source

import { Check, Minus } from "lucide-react";
import { cn } from "@/lib/utils";

export interface PricingCompareProps {
  title?: string;
  plans?: { name: string; price: string }[];
  rows?: { label: string; values: (boolean | string)[] }[];
  featured?: number;
  className?: string;
}

const DEFAULT_ROWS = [
  { label: "Automatic footprint", values: [true, true, true] },
  { label: "Integrations", values: ["3", "Unlimited", "Unlimited"] },
  { label: "Reduction plan & targets", values: [false, true, true] },
  { label: "Supplier portal", values: [false, true, true] },
  { label: "CSRD / CDP reports", values: [false, true, true] },
  { label: "Entities", values: ["1", "1", "Unlimited"] },
  { label: "Climate advisor", values: [false, false, true] },
];

/** Soft comparison table: rounded card, plan names in serif with prices, zebra rows in warm tints, sage check circles and dashes, highlighted featured column. */
export function PricingCompare({
  title = "Compare plans",
  plans = [
    { name: "Seedling", price: "Free" },
    { name: "Grove", price: "€290/mo" },
    { name: "Forest", price: "Custom" },
  ],
  rows = DEFAULT_ROWS,
  featured = 1,
  className,
}: PricingCompareProps) {
  return (
    <section aria-labelledby="os-pc-title" className={cn("da-section bg-da-bg text-da-fg", className)}>
      <div className="da-container">
        <h2 id="os-pc-title" className="text-center font-da-display text-[clamp(2rem,4.5vw,3rem)] tracking-da-display">
          {title}
        </h2>
        <div
          className="relative mx-auto mt-10 max-w-4xl overflow-x-auto rounded-da-lg bg-da-surface text-da-surface-fg shadow-da-md"
          role="region"
          aria-label="Plan comparison (scrollable)"
          tabIndex={0}
        >
          <table className="w-full min-w-[560px] text-left">
            <caption className="sr-only">{title}</caption>
            <thead>
              <tr>
                <td className="p-5" />
                {plans.map((p, i) => (
                  <th key={p.name} scope="col" className={cn("p-5 text-center font-normal", i === featured && "bg-da-accent text-da-accent-fg")}>
                    <span className="block font-da-display text-2xl">{p.name}</span>
                    <span className="block text-sm opacity-80">{p.price}</span>
                  </th>
                ))}
              </tr>
            </thead>
            <tbody>
              {rows.map((r, ri) => (
                <tr key={r.label} className={cn(ri % 2 === 0 && "bg-da-surface-2/60")}>
                  <th scope="row" className="px-5 py-4 font-normal">
                    {r.label}
                  </th>
                  {r.values.map((v, i) => (
                    <td key={i} className={cn("px-5 py-4 text-center", i === featured && "bg-da-accent/50")}>
                      {v === true ? (
                        <span className="mx-auto grid size-6 place-items-center rounded-full bg-da-primary text-da-primary-fg">
                          <Check aria-label="Included" className="size-3.5" strokeWidth={3} />
                        </span>
                      ) : v === false ? (
                        <Minus aria-label="Not included" className="mx-auto size-4 text-da-muted-fg" />
                      ) : (
                        <span className="font-medium">{v}</span>
                      )}
                    </td>
                  ))}
                </tr>
              ))}
            </tbody>
          </table>
        </div>
      </div>
    </section>
  );
}

export default PricingCompare;

modules/organic-soft/section/pricing-compare/index.tsx

Props

PropTypeDefaultDescription
titlestring—Heading.
plans{ name: string; price: string }[]—Plans.
rows{ label: string; values: (boolean | string)[] }[]—Rows.
featurednumber—Featured.
classNamestring—Extra classes on the root.

Other pricing variants in Organic Soft

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.

BrutalistPricing

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.

BrutalistPricing

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.

BrutalistPricing

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.

BrutalistPricing

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 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