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 ( + <> + + + + + + + + + + + + ) +}