
3D Extruded Buildings & Urban Footprints
Real-world 3D building extrusions with dynamic sunlight shadows, terrain DEM elevations, and pitch/bearing camera controls.
Continuous MAU and usage scale pricing slider with dynamic tier calculation and annual discount toggle.
Also available for Vue ->$pnpm dlx shadcn@latest add https://uipkge.dev/r/react/pricing-feature-tier-slider.json$npx shadcn@latest add https://uipkge.dev/r/react/pricing-feature-tier-slider.json$yarn dlx shadcn@latest add https://uipkge.dev/r/react/pricing-feature-tier-slider.json$bunx shadcn@latest add https://uipkge.dev/r/react/pricing-feature-tier-slider.jsonnpx shadcn@latest add @uipkge-react/pricing-feature-tier-sliderInstalls to:components/blocks/pricing-feature-tier-slider/| Name | Type / Values | Default | Required |
|---|---|---|---|
title | string | — | optional |
description | string | — | optional |
className | string | — | optional |
'use client'
import * as React from 'react'
import { ArrowRight, CheckCircle2, Sliders } from 'lucide-react'
import { Badge } from '@/components/ui/badge'
import { Button } from '@/components/ui/button'
import { Card, CardContent } from '@/components/ui/card'
import { cn } from '@/lib/utils'
export interface PricingFeatureTierSliderProps {
title?: string
description?: string
className?: string
}
const TIERS = [
{
label: '10K MAU',
mauCount: '10,000',
basePriceMonthly: 19,
tierName: 'Starter Hobbyist',
features: [
'10,000 Monthly Users',
'2 Dedicated Edge Locations',
'Community Discord SLA',
'Standard 1-Day Log Retention',
],
},
{
label: '50K MAU',
mauCount: '50,000',
basePriceMonthly: 49,
tierName: 'Pro Creator',
features: [
'50,000 Monthly Users',
'12 Global Anycast Edges',
'Next-Business-Day Support SLA',
'7-Day Immutable Log Retention',
],
},
{
label: '250K MAU',
mauCount: '250,000',
basePriceMonthly: 149,
tierName: 'Growth Scale',
features: [
'250,000 Monthly Users',
'All 36 Global Edge Regions',
'4-Hour Priority Engineering SLA',
'30-Day SOC2 Audit Logs',
],
},
{
label: '1M MAU',
mauCount: '1,000,000',
basePriceMonthly: 399,
tierName: 'Enterprise Core',
features: [
'1,000,000 Monthly Users',
'Dedicated VPC & Multi-Region Mesh',
'15-Minute Critical Incident SLA',
'365-Day Cold Storage Logs',
],
},
{
label: '5M+ MAU',
mauCount: '5,000,000+',
basePriceMonthly: 899,
tierName: 'Hyperscale Cluster',
features: [
'5,000,000+ Monthly Users',
'Custom Bare-Metal Cloud Partitions',
'Dedicated Solutions Architect',
'Custom Security Review & BAA',
],
},
]
export function PricingFeatureTierSlider({
title = 'Predictable usage pricing with dynamic linear scale.',
description = 'Slide to your estimated monthly active users or edge invocations to calculate your exact monthly investment.',
className,
}: PricingFeatureTierSliderProps) {
const [sliderIndex, setSliderIndex] = React.useState(2)
const [isAnnual, setIsAnnual] = React.useState(true)
const currentTier = TIERS[sliderIndex]
const effectivePrice = isAnnual ? Math.round(currentTier.basePriceMonthly * 0.8) : currentTier.basePriceMonthly
const annualSavings = (currentTier.basePriceMonthly - effectivePrice) * 12
return (
<section
data-slot="pricing-feature-tier-slider"
className={cn('bg-background relative overflow-hidden py-16 sm:py-24', className)}
>
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
{/* Section Header */}
<div className="mx-auto max-w-3xl space-y-4 text-center">
<a
href="#scale-pricing"
className="group border-border/80 bg-secondary/60 hover:bg-secondary text-foreground inline-flex items-center gap-2 rounded-full border px-3.5 py-1 text-xs font-medium shadow-2xs transition-colors"
>
<Sliders className="text-primary size-3.5" />
<span>Continuous Scale Synthesizer</span>
<ArrowRight className="text-muted-foreground size-3 transition-transform group-hover:translate-x-0.5" />
</a>
<h2 className="text-foreground text-3xl font-bold tracking-tight sm:text-4xl">{title}</h2>
<p className="text-muted-foreground text-base sm:text-lg">{description}</p>
{/* Cadence Switcher */}
<div className="flex items-center justify-center gap-3 pt-2">
<span
className={cn(
'text-xs font-medium',
!isAnnual ? 'text-foreground font-semibold' : 'text-muted-foreground',
)}
>
Monthly
</span>
<button
type="button"
className={cn(
'relative inline-flex h-6 w-11 shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out',
isAnnual ? 'bg-primary' : 'bg-muted',
)}
onClick={() => setIsAnnual(!isAnnual)}
>
<span
className={cn(
'bg-background pointer-events-none inline-block size-5 transform rounded-full shadow-lg ring-0 transition duration-200 ease-in-out',
isAnnual ? 'translate-x-5' : 'translate-x-0',
)}
/>
</button>
<span
className={cn(
'flex items-center gap-1.5 text-xs font-medium',
isAnnual ? 'text-foreground font-semibold' : 'text-muted-foreground',
)}
>
<span>Annual Billing</span>
<Badge variant="outline" className="border-success/30 bg-success/10 text-success text-xs">
Save 20%
</Badge>
</span>
</div>
</div>
{/* Pricing Slider Main Card */}
<div className="mx-auto mt-12 max-w-4xl">
<Card className="border-border bg-card overflow-hidden shadow-sm">
<CardContent className="space-y-8 p-8">
{/* Scale Indicator Bar */}
<div className="border-border flex flex-wrap items-center justify-between gap-4 border-b pb-6">
<div className="space-y-1">
<span className="text-muted-foreground text-xs font-bold tracking-wider uppercase">
Calculated Tier Plan
</span>
<h3 className="text-foreground text-2xl font-bold">{currentTier.tierName}</h3>
<div className="text-muted-foreground text-xs">
Engineered for {currentTier.mauCount} active user sessions
</div>
</div>
{/* Price Box */}
<div className="text-right">
<div className="flex items-baseline justify-end gap-1">
<span className="text-foreground font-mono text-4xl font-bold">${effectivePrice}</span>
<span className="text-muted-foreground font-mono text-xs">/ month</span>
</div>
{isAnnual ? (
<div className="text-success font-mono text-xs font-medium">Save ${annualSavings}/yr on annual</div>
) : null}
</div>
</div>
{/* Interactive Stepped Range Slider */}
<div className="space-y-3">
<div className="text-foreground flex items-center justify-between text-xs font-bold">
<span>Monthly Traffic Volume</span>
<span className="text-primary font-mono font-bold">{currentTier.mauCount} Users</span>
</div>
<input
type="range"
min="0"
max="4"
step="1"
value={sliderIndex}
onChange={(e) => setSliderIndex(parseInt(e.target.value))}
className="accent-primary h-2 w-full cursor-pointer"
/>
{/* Slider Step Labels */}
<div className="text-muted-foreground flex justify-between font-mono text-xs">
{TIERS.map((t, idx) => (
<span
key={idx}
className={cn(
'hover:text-foreground cursor-pointer transition-colors',
sliderIndex === idx ? 'text-primary font-bold' : '',
)}
onClick={() => setSliderIndex(idx)}
>
{t.label}
</span>
))}
</div>
</div>
{/* Features Checklist Grid for Current Tier */}
<div className="border-border space-y-3 border-t pt-4">
<span className="text-muted-foreground text-xs font-bold tracking-wider uppercase">
Guaranteed Tier Deliverables
</span>
<div className="grid grid-cols-1 gap-2.5 sm:grid-cols-2">
{currentTier.features.map((feat, fIdx) => (
<div key={fIdx} className="text-foreground flex items-center gap-2 text-xs">
<CheckCircle2 className="text-success size-4 shrink-0" />
<span>{feat}</span>
</div>
))}
</div>
</div>
{/* Action Button */}
<div className="pt-2">
<Button size="lg" className="w-full gap-2 shadow-xs">
<span>Deploy with {currentTier.tierName}</span>
<ArrowRight className="size-4" />
</Button>
</div>
</CardContent>
</Card>
</div>
</div>
</section>
)
}
export { PricingFeatureTierSlider } from './PricingFeatureTierSlider'
export type { PricingFeatureTierSliderProps } from './PricingFeatureTierSlider'
Raw manifest:https://uipkge.dev/r/react/pricing-feature-tier-slider.json