This component no longer exists. It was in sv-blocks’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-05 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
pricing-two
sv-blocks/pricing-twoRemovedBlock
Veil Pricing component, variant Two.
Install it
npx shadcn@latest add https://sv-blocks.vercel.app/r/pricing-two.jsonSource
1<script>2 import Button from "$COMPONENTS$/ui/button/button.svelte";3 import {4 Card,5 CardContent,6 CardDescription,7 CardHeader,8 CardTitle,9 CardFooter,10 } from "$COMPONENTS$/ui/card";11 import Check from "@lucide/svelte/icons/check";1213 let pricingList = {14 free: ["Basic Analytics Dashboard", "5GB Cloud Storage", "Email and Chat Support"],15 startup: ["Everything in Pro Plan", "5GB Cloud Storage", "Email and Chat Support"],16 pro: [17 "Everything in Free Plan",18 "5GB Cloud Storage",19 "Email and Chat Support",20 "Access to Community Forum",21 "Single User Access",22 "Access to Basic Templates",23 "Mobile App Access",24 "1 Custom Report Per Month",25 "Monthly Product Updates",26 "Standard Security Features",27 ],28 };29</script>3031<section class="py-16 md:py-32">32 <div class="mx-auto max-w-6xl px-6">33 <div class="mx-auto max-w-2xl space-y-6 text-center">34 <h1 class="text-center text-4xl font-semibold lg:text-5xl">35 Pricing that Scales with You36 </h1>37 <p>38 Gemini is evolving to be more than just the models. It supports an entire to the39 APIs and platforms helping developers and businesses innovate.40 </p>41 </div>4243 <div44 class="mt-8 grid gap-6 [--color-card:var(--color-muted)] *:border-none *:shadow-none md:mt-20 md:grid-cols-3 dark:[--color-muted:var(--color-zinc-900)]"45 >46 <Card class="flex flex-col">47 <CardHeader>48 <CardTitle class="font-medium">Free</CardTitle>49 <span class="my-3 block text-2xl font-semibold">$0 / mo</span>50 <CardDescription class="text-sm">Per editor</CardDescription>51 </CardHeader>5253 <CardContent class="space-y-4">54 <hr class="border-dashed" />5556 <ul class="list-outside space-y-3 text-sm">57 {#each pricingList.free as item}58 <li class="flex items-center gap-2">59 <Check class="size-3" />60 {item}61 </li>62 {/each}63 </ul>64 </CardContent>6566 <CardFooter class="mt-auto">67 <Button variant="outline" class="w-full">Get Started</Button>68 </CardFooter>69 </Card>7071 <Card class="relative">72 <span73 class="absolute inset-x-0 -top-3 mx-auto flex h-6 w-fit items-center rounded-full bg-linear-to-br/increasing from-purple-400 to-amber-300 px-3 py-1 text-xs font-medium text-amber-950 ring-1 ring-white/20 ring-offset-1 ring-offset-gray-950/5 ring-inset"74 >Popular</span75 >7677 <div class="flex flex-col">78 <CardHeader>79 <CardTitle class="font-medium">Pro</CardTitle>80// … truncated
What it pulls in
Other registry items
