import { Counter } from "@/components/Counter"; import { useTranslations } from "next-intl"; export function Statistics() { const t = useTranslations(); const stats = [ { number: "25", symbol: "+", label: t("home.statistics.experience"), }, { number: "450", symbol: "+", label: t("home.statistics.projectsCompleted"), }, { number: "99", symbol: "+", label: t("home.statistics.trainedSpecialists"), }, { number: "93", symbol: "%", label: t("home.statistics.trustedClients"), }, ]; return (
{stats.map((stat, index) => (
{/* Number and Symbol */}
{stat.symbol}
{/* Label */}

{stat.label}

))}
); }