'use client' interface Stat { id: string label: string value: string unit?: string } interface StatsProps { stats?: Stat[] } const defaultStats: Stat[] = [ { id: 'portfolios', label: 'Portfolios Hosted', value: '10,000+' }, { id: 'uptime', label: 'Uptime Guarantee', value: '99.9%' }, { id: 'users', label: 'Active Users', value: '50,000+' }, { id: 'time', label: 'Average Deploy Time', value: '<30s' }, ] export default function Stats({ stats = defaultStats }: StatsProps) { return (

Trusted by Creators

Portfolio Host is the platform of choice for creative professionals

{stats.map((stat) => (
{stat.value}

{stat.label}

))}
) }