This commit is contained in:
Vula Builder
2026-07-15 09:25:20 +00:00
parent 8574b40eb1
commit 236c726937
+27
View File
@@ -0,0 +1,27 @@
import IsibaniHeroSection from "@/components/sections/IsibaniHeroSection"
import UbuhleSuitesSection from "@/components/sections/UbuhleSuitesSection"
import IndabaStorySection from "@/components/sections/IndabaStorySection"
import UmkhontoSafariSection from "@/components/sections/UmkhontoSafariSection"
import IthubaSpecialsSection from "@/components/sections/IthubaSpecialsSection"
import IsithombeGallerySection from "@/components/sections/IsithombeGallerySection"
import UmlolozeloSection from "@/components/sections/UmlolozeloSection"
import LodgeRhythmsSection from "@/components/sections/LodgeRhythmsSection"
import BushEscapeBookingSection from "@/components/sections/BushEscapeBookingSection"
import ImbizoContactSection from "@/components/sections/ImbizoContactSection"
export default function HomePage() {
return (
<main>
<IsibaniHeroSection />
<UbuhleSuitesSection />
<IndabaStorySection />
<UmkhontoSafariSection />
<IthubaSpecialsSection />
<IsithombeGallerySection />
<UmlolozeloSection />
<LodgeRhythmsSection />
<BushEscapeBookingSection />
<ImbizoContactSection />
</main>
)
}