feat: add partners carousel, update sponsor section, add Nasalization font

This commit is contained in:
2026-05-15 16:35:28 +07:00
parent 79d428b3b3
commit ad22254cc8
25 changed files with 239 additions and 42 deletions
+2
View File
@@ -5,6 +5,7 @@ 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 PartnersCarousel from "@/app/components/home/PartnersCarousel";
export default function HomePageClient() {
const { home } = useTranslation();
@@ -15,6 +16,7 @@ export default function HomePageClient() {
<VisionSection data={home.vision} />
<StatsSection data={home.stats} />
<AgendaSection data={home.agenda} />
<PartnersCarousel />
</main>
);
}