
3D Extruded Buildings & Urban Footprints
Real-world 3D building extrusions with dynamic sunlight shadows, terrain DEM elevations, and pitch/bearing camera controls.
Comprehensive enterprise pricing workbench with monthly/annual billing cycle toggle, currency selector (USD/EUR/GBP), team seat simulator slider, dynamic add-on calculators, and an expandable side-by-side feature comparison matrix.
Also available for React ->$pnpm dlx shadcn-vue@latest add https://uipkge.dev/r/vue/pricing-01.json$npx shadcn-vue@latest add https://uipkge.dev/r/vue/pricing-01.json$yarn dlx shadcn-vue@latest add https://uipkge.dev/r/vue/pricing-01.json$bunx shadcn-vue@latest add https://uipkge.dev/r/vue/pricing-01.jsonnpx shadcn-vue@latest add @uipkge/pricing-01Installs to:app/components/blocks/| Name | Type / Values | Default | Required |
|---|---|---|---|
class | HTMLAttributes['class'] | — | optional |
<script setup lang="ts">
import { computed, ref } from 'vue'
import type { HTMLAttributes } from 'vue'
import { ArrowRight, Check, ChevronDown, ChevronUp, ShieldCheck, Users, Zap } from 'lucide-vue-next'
import { Badge } from '@/components/ui/badge'
import { Button } from '@/components/ui/button'
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/components/ui/card'
import { Separator } from '@/components/ui/separator'
import { Slider } from '@/components/ui/slider'
import { Switch } from '@/components/ui/switch'
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/table'
import { ToggleGroup, ToggleGroupItem } from '@/components/ui/toggle-group'
import { cn } from '@/lib/utils'
interface Props {
class?: HTMLAttributes['class']
}
defineProps<Props>()
type BillingCycle = 'monthly' | 'yearly'
type Currency = 'USD' | 'EUR' | 'GBP'
const billingCycle = ref<BillingCycle>('yearly')
const currency = ref<Currency>('USD')
const teamSeats = ref<number[]>([12])
const addDedicatedSla = ref(false)
const addAuditVault = ref(false)
const showComparisonTable = ref(false)
const currencySymbols: Record<Currency, string> = {
USD: '$',
EUR: '€',
GBP: '£',
}
const currencyRates: Record<Currency, number> = {
USD: 1.0,
EUR: 0.92,
GBP: 0.79,
}
const rates = computed(() => currencyRates[currency.value])
const sym = computed(() => currencySymbols[currency.value])
// Base tier pricing (per seat / month in USD)
const starterBase = computed(() => (billingCycle.value === 'yearly' ? 12 : 15))
const teamBase = computed(() => (billingCycle.value === 'yearly' ? 28 : 35))
const enterpriseBase = computed(() => (billingCycle.value === 'yearly' ? 68 : 85))
// Addons calculation
const slaCost = computed(() => (addDedicatedSla.value ? 99 : 0))
const vaultCost = computed(() => (addAuditVault.value ? 49 : 0))
// Computed calculated totals
const currentSeats = computed(() => teamSeats.value[0] || 1)
const starterMonthlyTotal = computed(() => {
const base = starterBase.value * currentSeats.value
return Math.round((base + (addAuditVault.value ? 29 : 0)) * rates.value)
})
const teamMonthlyTotal = computed(() => {
const base = teamBase.value * currentSeats.value
return Math.round((base + slaCost.value + vaultCost.value) * rates.value)
})
const enterpriseMonthlyTotal = computed(() => {
const base = enterpriseBase.value * currentSeats.value
return Math.round((base + slaCost.value + vaultCost.value) * rates.value)
})
const annualSavingsTeam = computed(() => {
const monthlyCost = 35 * currentSeats.value * 12
const yearlyCost = 28 * currentSeats.value * 12
return Math.round((monthlyCost - yearlyCost) * rates.value)
})
const comparisonMatrix = [
{
category: 'Platform & Compute Core',
features: [
{ name: 'Active Team Members', starter: 'Up to 10', team: 'Unlimited', enterprise: 'Unlimited + Org Units' },
{ name: 'Monthly API Requests', starter: '100,000 / mo', team: '2,500,000 / mo', enterprise: 'Custom Unlimited' },
{ name: 'Workflow Automations', starter: '10 active', team: '100 active', enterprise: 'Unlimited real-time' },
{ name: 'Data Retention History', starter: '30 days', team: '365 days', enterprise: '7 years immutable' },
],
},
{
category: 'Security & Enterprise Governance',
features: [
{
name: 'SOC 2 Type II & ISO 27001',
starter: 'Standard',
team: 'Included',
enterprise: 'Included + Auditor Portal',
},
{ name: 'SAML SSO & SCIM Provisioning', starter: '—', team: 'Google / Okta', enterprise: 'Custom IdP + SCIM v2' },
{
name: 'Role-Based Access (RBAC)',
starter: '3 predefined roles',
team: 'Granular permissions',
enterprise: 'Custom policy engine',
},
{
name: 'Immutable Audit Trail Logs',
starter: '—',
team: '90 days exportable',
enterprise: 'Real-time SIEM streaming',
},
],
},
{
category: 'Support & Success SLAs',
features: [
{
name: 'Support Channel',
starter: 'Community & Email',
team: 'Priority Email + Chat',
enterprise: 'Dedicated Private Slack',
},
{
name: 'First-Response SLA',
starter: '24 business hours',
team: '4 business hours',
enterprise: '< 15 mins (24/7/365)',
},
{ name: 'Uptime SLA Guarantee', starter: '99.9%', team: '99.95%', enterprise: '99.99% financially backed' },
{ name: 'Dedicated Solutions Architect', starter: '—', team: '—', enterprise: 'Assigned Principal Engineer' },
],
},
]
</script>
<template>
<section data-slot="pricing-01" :class="cn('bg-background w-full py-16 sm:py-24', $props.class)">
<div class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
<!-- Section Header -->
<div class="mx-auto max-w-3xl space-y-4 text-center">
<div
class="border-primary/20 bg-primary/5 text-primary inline-flex items-center gap-2 rounded-full border px-3 py-1 text-xs font-medium shadow-2xs"
>
<ShieldCheck class="size-3.5" />
<span>Predictable Enterprise Pricing</span>
</div>
<h2 class="text-foreground text-3xl font-bold tracking-tight sm:text-4xl lg:text-5xl">
Scale effortlessly without seat tax surprises
</h2>
<p class="text-muted-foreground text-base sm:text-lg">
Zero setup fees, transparent volume discounts, and instant self-serve provisioning. Switch or cancel plans
anytime.
</p>
<!-- Billing Cycle & Currency Switcher Toolbar -->
<div class="mt-8 flex flex-wrap items-center justify-center gap-4 pt-2">
<!-- Monthly vs Yearly -->
<div class="border-border bg-card inline-flex rounded-lg border p-1 shadow-2xs">
<ToggleGroup
type="single"
:model-value="billingCycle"
@update:model-value="(v) => v && (billingCycle = v as BillingCycle)"
>
<ToggleGroupItem value="monthly" class="px-3.5 py-1.5 text-xs font-medium"> Monthly </ToggleGroupItem>
<ToggleGroupItem value="yearly" class="flex items-center gap-1.5 px-3.5 py-1.5 text-xs font-medium">
<span>Annual</span>
<Badge variant="secondary" class="bg-primary/10 text-primary border-primary/20 px-1.5 py-0 text-xs">
Save 20%
</Badge>
</ToggleGroupItem>
</ToggleGroup>
</div>
<!-- Currency Selector -->
<div class="border-border bg-card inline-flex rounded-lg border p-1 shadow-2xs">
<ToggleGroup
type="single"
:model-value="currency"
@update:model-value="(v) => v && (currency = v as Currency)"
>
<ToggleGroupItem value="USD" class="px-2.5 py-1 font-mono text-xs font-medium">USD ($)</ToggleGroupItem>
<ToggleGroupItem value="EUR" class="px-2.5 py-1 font-mono text-xs font-medium">EUR (€)</ToggleGroupItem>
<ToggleGroupItem value="GBP" class="px-2.5 py-1 font-mono text-xs font-medium">GBP (£)</ToggleGroupItem>
</ToggleGroup>
</div>
</div>
<!-- Interactive Team Seat Simulator Bar -->
<div class="border-border bg-card mx-auto mt-6 max-w-xl rounded-xl border p-4 shadow-2xs">
<div class="flex flex-wrap items-center justify-between gap-2 text-xs">
<div class="text-foreground flex items-center gap-2 font-medium">
<Users class="text-primary size-4" />
<span>Simulate Team Size:</span>
</div>
<div class="flex items-center gap-2">
<span class="bg-muted text-foreground rounded px-2 py-0.5 font-mono text-xs font-semibold">
{{ currentSeats }} {{ currentSeats === 1 ? 'seat' : 'seats' }}
</span>
<span v-if="billingCycle === 'yearly' && annualSavingsTeam > 0" class="text-success text-xs font-medium">
(Saves ~{{ sym }}{{ annualSavingsTeam.toLocaleString() }}/yr on Team plan)
</span>
</div>
</div>
<div class="mt-3">
<Slider v-model="teamSeats" :min="1" :max="50" :step="1" class="cursor-pointer" />
</div>
<div class="text-muted-foreground mt-2 flex justify-between font-mono text-xs">
<span>1 seat</span>
<span>25 seats</span>
<span>50+ seats</span>
</div>
</div>
</div>
<!-- Plan Cards Grid -->
<div class="mt-12 grid grid-cols-1 gap-8 lg:grid-cols-3 lg:items-stretch">
<!-- Tier 1: Starter -->
<Card
class="border-border bg-card hover:border-primary/40 relative flex flex-col justify-between shadow-xs transition-colors duration-200 hover:shadow-md"
>
<div>
<CardHeader class="pb-4">
<div class="flex items-center justify-between">
<Badge variant="outline" class="font-mono text-xs">Bootstrap & Indie</Badge>
</div>
<CardTitle class="text-foreground text-xl font-bold tracking-tight">Starter Studio</CardTitle>
<CardDescription class="text-muted-foreground text-xs">
For agile squads and early-stage product teams validating core workflows.
</CardDescription>
<div class="mt-6 space-y-1">
<div class="flex items-baseline gap-1.5">
<span class="text-foreground text-4xl font-bold tracking-tight">
{{ sym }}{{ Math.round(starterBase * rates) }}
</span>
<span class="text-muted-foreground text-xs font-medium">/ seat / month</span>
</div>
<div class="text-muted-foreground font-mono text-xs">
Est. {{ sym }}{{ starterMonthlyTotal.toLocaleString() }}/mo for {{ currentSeats }}
{{ currentSeats === 1 ? 'seat' : 'seats' }}
</div>
</div>
</CardHeader>
<CardContent class="space-y-4 pt-2">
<Separator />
<div class="space-y-2.5">
<p class="text-muted-foreground text-xs font-semibold tracking-wider uppercase">Included features</p>
<ul class="text-foreground space-y-2.5 text-xs">
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span>Up to 10 team seats & unlimited guests</span>
</li>
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span>100,000 monthly API event calls</span>
</li>
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span>30-day continuous audit & revision history</span>
</li>
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span>Standard Community & Email support (24h)</span>
</li>
<li class="text-muted-foreground flex items-start gap-2">
<Check class="text-muted-foreground/50 mt-0.5 size-4 shrink-0" />
<span>Community Discord access & quickstarts</span>
</li>
</ul>
</div>
</CardContent>
</div>
<CardFooter class="border-border mt-auto border-t pt-4">
<Button variant="outline" class="h-10 w-full gap-1.5 text-xs font-semibold">
<span>Start Free 14-Day Trial</span>
<ArrowRight class="size-3.5" />
</Button>
</CardFooter>
</Card>
<!-- Tier 2: Team Pro (Highlighted Flagship) -->
<Card
class="border-primary bg-card ring-primary/20 relative flex flex-col justify-between shadow-lg ring-2 transition-colors duration-200 hover:shadow-xl lg:-translate-y-2"
>
<div class="absolute -top-3.5 left-1/2 -translate-x-1/2">
<Badge class="bg-primary text-primary-foreground gap-1.5 px-3 py-0.5 text-xs font-semibold shadow-sm">
<Zap class="size-3 fill-current" />
<span>Most Popular Choice</span>
</Badge>
</div>
<div>
<CardHeader class="pt-7 pb-4">
<div class="flex items-center justify-between">
<Badge variant="secondary" class="bg-primary/10 text-primary border-primary/20 font-mono text-xs">
Scale & High-Growth
</Badge>
</div>
<CardTitle class="text-foreground text-2xl font-bold tracking-tight">Team Scale</CardTitle>
<CardDescription class="text-muted-foreground text-xs">
For fast-scaling engineering and product organizations requiring deep automation.
</CardDescription>
<div class="mt-6 space-y-1">
<div class="flex items-baseline gap-1.5">
<span class="text-foreground text-4xl font-bold tracking-tight">
{{ sym }}{{ Math.round(teamBase * rates) }}
</span>
<span class="text-muted-foreground text-xs font-medium">/ seat / month</span>
</div>
<div class="text-primary font-mono text-xs font-medium">
Est. {{ sym }}{{ teamMonthlyTotal.toLocaleString() }}/mo for {{ currentSeats }}
{{ currentSeats === 1 ? 'seat' : 'seats' }}
</div>
</div>
</CardHeader>
<CardContent class="space-y-4 pt-2">
<Separator />
<div class="space-y-2.5">
<p class="text-muted-foreground text-xs font-semibold tracking-wider uppercase">
Everything in Starter, plus
</p>
<ul class="text-foreground space-y-2.5 text-xs">
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span class="font-medium">Unlimited team seats & custom workspace roles</span>
</li>
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span>2.5M monthly API calls & priority queue</span>
</li>
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span>Google & Okta SAML SSO integration</span>
</li>
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span>365-day immutable compliance logs</span>
</li>
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span>Priority ticketing with 4h guaranteed SLA</span>
</li>
</ul>
</div>
<!-- Addons Selector for Team -->
<div class="border-border bg-muted/30 space-y-2.5 rounded-lg border p-3">
<p class="text-foreground text-xs font-semibold">Optional Power Add-ons</p>
<div class="flex items-center justify-between text-xs">
<label for="vue-sla-addon" class="text-muted-foreground cursor-pointer">
24/7 Dedicated SLA (+{{ sym }}{{ Math.round(99 * rates) }}/mo)
</label>
<Switch id="vue-sla-addon" v-model="addDedicatedSla" />
</div>
<div class="flex items-center justify-between text-xs">
<label for="vue-vault-addon" class="text-muted-foreground cursor-pointer">
SOC 2 Vault Streaming (+{{ sym }}{{ Math.round(49 * rates) }}/mo)
</label>
<Switch id="vue-vault-addon" v-model="addAuditVault" />
</div>
</div>
</CardContent>
</div>
<CardFooter class="border-border mt-auto border-t pt-4">
<Button class="h-10 w-full gap-1.5 text-xs font-semibold shadow-sm">
<span>Deploy Team Workspace</span>
<ArrowRight class="size-3.5" />
</Button>
</CardFooter>
</Card>
<!-- Tier 3: Enterprise Platform -->
<Card
class="border-border bg-card hover:border-primary/40 relative flex flex-col justify-between shadow-xs transition-colors duration-200 hover:shadow-md"
>
<div>
<CardHeader class="pb-4">
<div class="flex items-center justify-between">
<Badge variant="outline" class="font-mono text-xs">Enterprise & Security</Badge>
</div>
<CardTitle class="text-foreground text-xl font-bold tracking-tight">Enterprise Suite</CardTitle>
<CardDescription class="text-muted-foreground text-xs">
Dedicated infrastructure, custom security controls, and bespoke compliance SLAs.
</CardDescription>
<div class="mt-6 space-y-1">
<div class="flex items-baseline gap-1.5">
<span class="text-foreground text-4xl font-bold tracking-tight">
{{ sym }}{{ Math.round(enterpriseBase * rates) }}
</span>
<span class="text-muted-foreground text-xs font-medium">/ seat / month</span>
</div>
<div class="text-muted-foreground font-mono text-xs">
Custom volume licensing available for 100+ seats
</div>
</div>
</CardHeader>
<CardContent class="space-y-4 pt-2">
<Separator />
<div class="space-y-2.5">
<p class="text-muted-foreground text-xs font-semibold tracking-wider uppercase">
Everything in Team, plus
</p>
<ul class="text-foreground space-y-2.5 text-xs">
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span>Custom SCIM v2 user provisioning & directory sync</span>
</li>
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span>Dedicated VPC peering & custom data residency</span>
</li>
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span>99.99% uptime SLA with financial penalty backing</span>
</li>
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span>Assigned Principal Solutions Engineer & private Slack</span>
</li>
<li class="flex items-start gap-2">
<Check class="text-success mt-0.5 size-4 shrink-0" />
<span>Custom Master Service Agreement (MSA) & DPA</span>
</li>
</ul>
</div>
</CardContent>
</div>
<CardFooter class="border-border mt-auto border-t pt-4">
<Button variant="outline" class="h-10 w-full gap-1.5 text-xs font-semibold">
<ShieldCheck class="text-primary size-3.5" />
<span>Contact Solutions Team</span>
</Button>
</CardFooter>
</Card>
</div>
<!-- Collapsible Feature Matrix Trigger -->
<div class="mt-12 text-center">
<Button
variant="ghost"
size="sm"
class="text-foreground hover:bg-muted gap-2 text-xs font-semibold"
@click="showComparisonTable = !showComparisonTable"
>
<span>{{
showComparisonTable ? 'Hide Detailed Feature Comparison' : 'Compare All Features & Enterprise Limits'
}}</span>
<ChevronUp v-if="showComparisonTable" class="size-4" />
<ChevronDown v-else class="size-4" />
</Button>
</div>
<!-- Feature Comparison Matrix Table -->
<div v-if="showComparisonTable" class="border-border bg-card mt-8 overflow-hidden rounded-xl border shadow-xs">
<div class="border-border bg-muted/20 flex flex-wrap items-center justify-between gap-4 border-b p-4 sm:p-6">
<div>
<h3 class="text-foreground text-base font-bold">Detailed Specification & Limits</h3>
<p class="text-muted-foreground text-xs">Comprehensive side-by-side breakdown across every tier.</p>
</div>
<Badge variant="outline" class="font-mono text-xs">All plans include SSL & automated backups</Badge>
</div>
<div class="overflow-x-auto">
<Table>
<TableHeader>
<TableRow class="bg-muted/40">
<TableHead class="text-foreground w-[34%] text-xs font-semibold">Capabilities</TableHead>
<TableHead class="text-foreground w-[22%] text-xs font-semibold">Starter Studio</TableHead>
<TableHead class="text-primary w-[22%] text-xs font-bold font-semibold">Team Scale</TableHead>
<TableHead class="text-foreground w-[22%] text-xs font-semibold">Enterprise Suite</TableHead>
</TableRow>
</TableHeader>
<TableBody>
<template v-for="(group, idx) in comparisonMatrix" :key="idx">
<TableRow class="bg-muted/60 text-muted-foreground text-xs font-semibold">
<TableCell colspan="4" class="py-2.5 font-mono text-xs tracking-wider uppercase">
{{ group.category }}
</TableCell>
</TableRow>
<TableRow v-for="(feat, fIdx) in group.features" :key="fIdx" class="text-xs">
<TableCell class="text-foreground py-3 font-medium">
{{ feat.name }}
</TableCell>
<TableCell class="text-muted-foreground py-3">{{ feat.starter }}</TableCell>
<TableCell class="text-foreground bg-primary/5 py-3 font-medium">{{ feat.team }}</TableCell>
<TableCell class="text-foreground py-3">{{ feat.enterprise }}</TableCell>
</TableRow>
</template>
</TableBody>
</Table>
</div>
</div>
</div>
</section>
</template>
Raw manifest:https://uipkge.dev/r/vue/pricing-01.json