"use client"; import { StatCard } from "@/components/ds"; export type ExperienceStat = { label: string; value: string; hint?: string }; export function ExperienceStatGrid({ stats }: { stats: ExperienceStat[] }) { return (
{stats.map((s) => ( ))}
); }