translation

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-01-27 20:44:21 +05:00
parent 21cb013cd8
commit ac7cd51600
24 changed files with 397 additions and 337 deletions

View File

@@ -1,24 +1,27 @@
import { useTranslations } from "next-intl";
export function Statistics() {
const t = useTranslations();
const stats = [
{
number: '25',
symbol: '+',
label: 'Years Experience',
label: t("home.statistics.experience"),
},
{
number: '450',
symbol: '+',
label: 'Families Saved',
label: t("home.statistics.projectsCompleted"),
},
{
number: '99',
symbol: '+',
label: 'Trained Staff',
label: t("home.statistics.trainedSpecialists"),
},
{
number: '93',
symbol: '%',
label: 'Trusted Clients',
label: t("home.statistics.trustedClients"),
},
];