import { STATS } from '@/lib/constants'; export function HeroStatsSSR() { return (
{STATS.map((stat) => (
{stat.value}
{stat.label}
))}
); }