From 5b3f0e54b20f6585940141801c2522518ad0800a Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 16:56:14 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 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..0721b88 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,23 @@ +import VendaWelcomeHeroSection from "@/components/sections/VendaWelcomeHeroSection" +import VendaHeritageRoomsSection from "@/components/sections/VendaHeritageRoomsSection" +import VendaRootsStorySection from "@/components/sections/VendaRootsStorySection" +import VendaCulturalImmersionSection from "@/components/sections/VendaCulturalImmersionSection" +import VendaSeasonalSpecialsSection from "@/components/sections/VendaSeasonalSpecialsSection" +import VendaGuestStoriesSection from "@/components/sections/VendaGuestStoriesSection" +import VendaVisionsGallerySection from "@/components/sections/VendaVisionsGallerySection" +import VendaLodgeEnquirySection from "@/components/sections/VendaLodgeEnquirySection" + +export default function HomePage() { + return ( + <> + + + + + + + + + + ) +}