Adding speakers section and gallery section

This commit is contained in:
2026-05-22 16:31:12 +07:00
parent 1e706758da
commit 9d5b8120a8
15 changed files with 249 additions and 4 deletions
+5 -1
View File
@@ -5,6 +5,8 @@ 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 GallerySection from "@/app/components/home/GallerySection";
import PartnersCarousel from "@/app/components/home/PartnersCarousel";
export default function HomePageClient() {
@@ -16,7 +18,9 @@ export default function HomePageClient() {
<VisionSection data={home.vision} />
<StatsSection data={home.stats} />
<AgendaSection data={home.agenda} />
<PartnersCarousel />
<SpeakerSpotlightSection data={home.speakers} />
<PartnersCarousel eyebrow={home.partners.eyebrow} title={home.partners.title} />
<GallerySection data={home.gallery} />
</main>
);
}