This commit is contained in:
Vula Builder
2026-06-23 08:38:36 +00:00
parent ec9dc02fcd
commit bb0491ec45
+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>
)
}