/** * Landing Section: Stats Band * * Full-width gradient band with animated counter stats. */ import { StaggerContainer, AnimatedStat } from '../primitives' const STATS = [ { value: '99.9%', label: 'Uptime' }, { value: '10x', label: 'Faster' }, { value: '50K+', label: 'Users' }, { value: '<50ms', label: 'Response Time' }, ] export default function StatsSection() { return (
{STATS.map(stat => ( ))}
) }