From 7883f9efc4b77e931f1193bc2821bf5db8e15145 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 25 Jul 2026 11:17:54 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/app/page.tsx diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..c0c4b12 --- /dev/null +++ b/src/app/page.tsx @@ -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 ( + <> + + + + + + + + + + + + ) +}