This commit is contained in:
Vula Builder
2026-07-26 17:41:16 +00:00
parent bb250360d7
commit 17b252eb47
+29
View File
@@ -0,0 +1,29 @@
import HeroSection from "@/components/sections/HeroSection"
import LuxuryAccommodationsSection from "@/components/sections/LuxuryAccommodationsSection"
import BushStorySection from "@/components/sections/BushStorySection"
import SafariExperiencesSection from "@/components/sections/SafariExperiencesSection"
import CurrentOffersSection from "@/components/sections/CurrentOffersSection"
import GuestGallerySection from "@/components/sections/GuestGallerySection"
import LodgeJournalSection from "@/components/sections/LodgeJournalSection"
import GuestTestimonialsSection from "@/components/sections/GuestTestimonialsSection"
import BookingCTASection from "@/components/sections/BookingCTASection"
import ContactSection from "@/components/sections/ContactSection"
import LodgePoliciesSection from "@/components/sections/LodgePoliciesSection"
export default function HomePage() {
return (
<>
<HeroSection />
<BushStorySection />
<LuxuryAccommodationsSection />
<SafariExperiencesSection />
<CurrentOffersSection />
<GuestTestimonialsSection />
<GuestGallerySection />
<LodgeJournalSection />
<BookingCTASection />
<ContactSection />
<LodgePoliciesSection />
</>
)
}