This commit is contained in:
Vula Builder
2026-07-25 11:17:54 +00:00
parent 1f6a0792fe
commit 7883f9efc4
+27
View File
@@ -0,0 +1,27 @@
import SavannaSanctuaryHeroSection from "@/components/sections/SavannaSanctuaryHeroSection"
import SereneSuitesSection from "@/components/sections/SereneSuitesSection"
import RootsOfMasaiSection from "@/components/sections/RootsOfMasaiSection"
import EarthlyComfortsSection from "@/components/sections/EarthlyComfortsSection"
import SeasonalSanctuaryOffersSection from "@/components/sections/SeasonalSanctuaryOffersSection"
import EarthyMomentsGallerySection from "@/components/sections/EarthyMomentsGallerySection"
import GuestReflectionsSection from "@/components/sections/GuestReflectionsSection"
import StoriesOfTheLandSection from "@/components/sections/StoriesOfTheLandSection"
import BookYourSanctuarySection from "@/components/sections/BookYourSanctuarySection"
import FindUsAndConnectSection from "@/components/sections/FindUsAndConnectSection"
export default function HomePage() {
return (
<>
<SavannaSanctuaryHeroSection />
<SereneSuitesSection />
<RootsOfMasaiSection />
<EarthlyComfortsSection />
<SeasonalSanctuaryOffersSection />
<EarthyMomentsGallerySection />
<GuestReflectionsSection />
<StoriesOfTheLandSection />
<BookYourSanctuarySection />
<FindUsAndConnectSection />
</>
)
}