"use client"; import { useTranslation } from "@/app/hooks/useTranslation"; import HeroSection from "@/app/components/home/HeroSection"; import VisionSection from "@/app/components/home/VisionSection"; import StatsSection from "@/app/components/home/StatsSection"; import AgendaSection from "@/app/components/home/AgendaSection"; export default function HomePageClient() { const { home } = useTranslation(); return (
); }