Files
ipv6-sims/app/components/home/HomePageClient.tsx
T

29 lines
1.2 KiB
TypeScript

"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";
import SpeakerSpotlightSection from "@/app/components/home/SpeakerSpotlightSection";
import KeyInviteesSection from "@/app/components/home/KeyInviteesSection";
import GallerySection from "@/app/components/home/GallerySection";
import PartnersCarousel from "@/app/components/home/PartnersCarousel";
export default function HomePageClient() {
const { home } = useTranslation();
return (
<main className="pt-16 lg:pt-20">
<HeroSection data={home.hero} />
<VisionSection data={home.vision} />
<StatsSection data={home.stats} />
<AgendaSection data={home.agenda} />
<SpeakerSpotlightSection data={home.speakers} />
<KeyInviteesSection data={home.keyInvitees} />
<PartnersCarousel eyebrow={home.partners.eyebrow} title={home.partners.title} />
<GallerySection data={home.gallery} />
</main>
);
}