Files
ipv6-sims/app/(site)/page.tsx
T
2026-05-11 16:24:14 +07:00

18 lines
568 B
TypeScript

import home from "@/app/data/home.json";
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 HomePage() {
return (
<main className="pt-24 lg:pt-32">
<HeroSection data={home.hero} />
<VisionSection data={home.vision} />
<StatsSection data={home.stats} />
<AgendaSection data={home.agenda} />
</main>
);
}