From 8f5338cc8d1a05158ff2603775d7bd2cb17c278c Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 16:40:54 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 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..4589c82 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,29 @@ +import HeroSection from "@/components/sections/HeroSection" +import RoomsSection from "@/components/sections/RoomsSection" +import OurStorySection from "@/components/sections/OurStorySection" +import VendaExperiencesSection from "@/components/sections/VendaExperiencesSection" +import SpecialsSection from "@/components/sections/SpecialsSection" +import GallerySection from "@/components/sections/GallerySection" +import GuestStoriesSection from "@/components/sections/GuestStoriesSection" +import CulturalInsightsSection from "@/components/sections/CulturalInsightsSection" +import BookingCTASection from "@/components/sections/BookingCTASection" +import ContactSection from "@/components/sections/ContactSection" +import LocationSection from "@/components/sections/LocationSection" + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + + ) +}