From 461d0407b75871888eb146be35da010ffee88d3a Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 25 Jul 2026 19:05:16 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 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..a11a84f --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,25 @@ +import HeroSection from "@/components/sections/HeroSection" +import RoomsSection from "@/components/sections/RoomsSection" +import OurStorySection from "@/components/sections/OurStorySection" +import SpecialOffersSection from "@/components/sections/SpecialOffersSection" +import GallerySection from "@/components/sections/GallerySection" +import GuestStoriesSection from "@/components/sections/GuestStoriesSection" +import BookingCTASection from "@/components/sections/BookingCTASection" +import LocationSection from "@/components/sections/LocationSection" +import ContactEnquirySection from "@/components/sections/ContactEnquirySection" + +export default function HomePage() { + return ( + <> + + + + + + + + + + + ) +}