import { t } from "@lingui/macro"; import { Counter } from "./counter"; type Statistic = { name: string; value: number; }; export const StatisticsSection = () => { const stats: Statistic[] = [ { name: t`GitHub Stars`, value: 27_000 }, { name: t`Users Signed Up`, value: 650_000 }, { name: t`Resumes Generated`, value: 840_000 }, ]; return (
{stats.map((stat, index) => (
{stat.name}
+
))}
); };