BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/poyraz/pricing-block

Pricing Block

poyraz/pricing-block
FreeBlock

Poyraz Soft Glass Pricing Block with container-responsive layout and semantic tokens.

Install it

npx shadcn@latest add https://ui.poyrazavsever.com/r/pricing-block.json

Source

registry/poyraz/blocks/phase8/pricing-block.tsxui.poyrazavsever.com/r/pricing-block.json
1import { Check } from "lucide-react";
2
3import { Badge } from "@/components/ui/atoms/badge";
4import { Button } from "@/components/ui/atoms/button";
5import {
6 Card,
7 CardContent,
8 CardDescription,
9 CardFooter,
10 CardHeader,
11 CardTitle,
12} from "@/components/ui/atoms/card";
13
14export interface PricingPlan {
15 name: string;
16 price: string;
17 description: string;
18 features: string[];
19 featured?: boolean;
20}
21
22export const pricingPlans: PricingPlan[] = [
23 {
24 name: "Starter",
25 price: "$0",
26 description: "For personal projects.",
27 features: ["3 projects", "Community support", "Core blocks"],
28 },
29 {
30 name: "Pro",
31 price: "$29",
32 description: "For product teams.",
33 features: ["Unlimited projects", "Priority support", "All registry blocks"],
34 featured: true,
35 },
36 {
37 name: "Scale",
38 price: "$99",
39 description: "For organizations.",
40 features: ["Everything in Pro", "SSO", "Design system review"],
41 },
42];
43
44function PricingBlock({ plans = pricingPlans }: { plans?: PricingPlan[] }) {
45 return (
46 <section data-slot="pricing-block" className="@container/pricing px-3 py-10 @sm/pricing:px-6">
47 <div className="mx-auto max-w-5xl">
48 <div className="mx-auto mb-8 max-w-xl text-center">
49 <Badge variant="outline">Pricing</Badge>
50 <h2 className="mt-3 text-2xl font-semibold">Plans that grow with your product</h2>
51 <p className="mt-2 text-sm text-muted-foreground">
52 Clear limits, source-owned components, no runtime lock-in.
53 </p>
54 </div>
55 <div className="grid gap-4 @lg/pricing:grid-cols-3">
56 {plans.map((plan) => (
57 <Card
58 key={plan.name}
59 variant={plan.featured ? "glass" : "default"}
60 className={plan.featured ? "border-primary/30" : undefined}
61 >
62 <CardHeader>
63 <div>
64 <CardTitle>{plan.name}</CardTitle>
65 <CardDescription>{plan.description}</CardDescription>
66 </div>
67 {plan.featured && <Badge>Popular</Badge>}
68 </CardHeader>
69 <CardContent className="flex-1">
70 <p className="mb-5 text-3xl font-semibold">
71 {plan.price}
72 <span className="text-sm font-normal text-muted-foreground"> / month</span>
73 </p>
74 <ul className="space-y-2">
75 {plan.features.map((feature) => (
76// … truncated

What it pulls in

npm packages

  • lucide-react@^0.574.0

Other registry items

  • @poyraz/poyraz-utils
  • @poyraz/poyraz-theme
  • @poyraz/badge
  • @poyraz/button
  • @poyraz/card

Files it writes

  • registry/poyraz/blocks/phase8/pricing-block.tsx

Facts

Registry
poyraz
Type
registry:block
Access
Free
Files written
1
Licence
MIT
First indexed
2026-08-01
Last confirmed
yesterday

Go to the source

ui.poyrazavsever.com poyrazavsever/poyraz-ui on GitHub Raw registry item This item as JSON

More from poyraz

All 71 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Article Cardarticle-cardpoyrazBlocksFreeno deps
Auth Card Blockauth-card-blockpoyrazBlocksFree1 dep
Brand Hero Blockbrand-hero-blockpoyrazBlocksFree1 dep
Dashboard Shell Blockdashboard-shell-blockpoyrazBlocksFree1 dep
Footer Blocksfooter-blockspoyrazBlocksFree1 dep
Glass App Shell Blockglass-app-shell-blockpoyrazBlocksFree1 dep
Image Cardimage-cardpoyrazBlocksFreeno deps
Mega Menu Blockmega-menu-blockpoyrazBlocksFree1 dep
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex