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