This commit is contained in:
Vula Builder
2026-06-23 08:47:06 +00:00
parent 844450fa6d
commit 6d0849ccf4
+27
View File
@@ -0,0 +1,27 @@
import WarmRegalWelcomeHeroSection from "@/components/sections/WarmRegalWelcomeHeroSection"
import ThemedRegalSuitesSection from "@/components/sections/ThemedRegalSuitesSection"
import KwaNtofontofoStorySection from "@/components/sections/KwaNtofontofoStorySection"
import KwaNtofontofoSpecialsSection from "@/components/sections/KwaNtofontofoSpecialsSection"
import GuesthouseGallerySection from "@/components/sections/GuesthouseGallerySection"
import GuestsLalaKahlePraiseSection from "@/components/sections/GuestsLalaKahlePraiseSection"
import ImveloInsightsSection from "@/components/sections/ImveloInsightsSection"
import PlanYourRoyalStayCTASection from "@/components/sections/PlanYourRoyalStayCTASection"
import KwaNtofontofoEnquirySection from "@/components/sections/KwaNtofontofoEnquirySection"
import KwaNtofontofoLocationSection from "@/components/sections/KwaNtofontofoLocationSection"
export default function HomePage() {
return (
<main>
<WarmRegalWelcomeHeroSection />
<KwaNtofontofoStorySection />
<ThemedRegalSuitesSection />
<KwaNtofontofoSpecialsSection />
<GuesthouseGallerySection />
<ImveloInsightsSection />
<GuestsLalaKahlePraiseSection />
<PlanYourRoyalStayCTASection />
<KwaNtofontofoEnquirySection />
<KwaNtofontofoLocationSection />
</main>
)
}