Simple Two Column
The plainest block in the category: two columns, Free and Pro, each showing only a price, a short feature list, and a single CTA button. No badges, no highlighted-tier styling, no testimonials or extra chrome, for pages that want pricing to get out of the way.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/simple-two-column.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/pricing/pricing12.tsx instead.
Usage
The file also exports pricing12Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { Pricing12, pricing12Demo } from "@/components/blocks/pricing/pricing12"; export default function Page() { return <Pricing12 {...pricing12Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | ReactNode | undefined | Centered headline above the two columns. |
| free | ColumnPlan | none | The free column's price, features, and CTA. Required. |
| pro | ColumnPlan | none | The pro column's price, features, and CTA. Required. |
| className | string | none | Extra classes for the outer section element. |
Types
type ColumnPlan = { name: string; price: string; period?: string; features: string[]; ctaLabel: string; ctaHref?: string; };
Behavior notes
- This block is fully static: a Server Component with zero event handlers and no highlighted/popular styling on either column by design.
- Both CTA buttons are inert placeholders (href defaults to "#" in the demo) with no real navigation or checkout wired up.
More Pricing Blocks
View all →Three Tier Cards
Classic three-column pricing cards with one plan visually highlighted as the recommended choice.
Monthly/Yearly Toggle
Three-tier pricing cards with a real billing-period toggle that switches every displayed price.
Single Plan Highlight
One centered, larger card for a single plan with a big price, full feature list, and a primary CTA.
Comparison Table
A full feature-matrix table comparing 3-4 plan tiers row by row, with a horizontal scroll fallback on mobile.
Enterprise Contact Card
A standard self-serve plan card next to a distinctly-styled Enterprise card with custom-quote messaging.
Pricing With Testimonial
Pricing cards paired with a single customer quote block for social proof, side by side on large screens.