From 04181b4ee29aefbc4acadc4bd70cf509b3ccfa39 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 25 Jul 2026 13:58:32 +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..7315d6b --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,27 @@ +import HeroSection from "@/components/sections/HeroSection" +import MaasaiSuitesRoomsSection from "@/components/sections/MaasaiSuitesRoomsSection" +import MaasaiHeritageSection from "@/components/sections/MaasaiHeritageSection" +import MaasaiExperiencesSection from "@/components/sections/MaasaiExperiencesSection" +import MasaiSuitesPromotionsSection from "@/components/sections/MasaiSuitesPromotionsSection" +import BoutiqueGallerySection from "@/components/sections/BoutiqueGallerySection" +import GuestRavesSection from "@/components/sections/GuestRavesSection" +import StayPracticalSection from "@/components/sections/StayPracticalSection" +import ReserveYourSuiteSection from "@/components/sections/ReserveYourSuiteSection" +import GetInTouchSection from "@/components/sections/GetInTouchSection" + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + ) +}