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: 19_500 }, { name: t`Users Signed Up`, value: 500_000 }, { name: t`Resumes Generated`, value: 700_000 }, ]; return (
{stats.map((stat, index) => (
{stat.name}
+
))}
); };