This commit is contained in:
Vula Builder
2026-07-26 16:56:14 +00:00
parent 3e302ea69e
commit 5b3f0e54b2
+23
View File
@@ -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 (
<>
<VendaWelcomeHeroSection />
<VendaHeritageRoomsSection />
<VendaRootsStorySection />
<VendaCulturalImmersionSection />
<VendaSeasonalSpecialsSection />
<VendaGuestStoriesSection />
<VendaVisionsGallerySection />
<VendaLodgeEnquirySection />
</>
)
}