translation
This commit is contained in:
@@ -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"),
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user