This commit is contained in:
Vula Builder
2026-07-14 17:42:05 +00:00
parent 4c7d8b3e5e
commit 8ec773ac64
+25
View File
@@ -0,0 +1,25 @@
import CapeDutchHomesteadHeroSection from "@/components/sections/CapeDutchHomesteadHeroSection"
import FiveRoomHomesteadSection from "@/components/sections/FiveRoomHomesteadSection"
import FranschhoekHeritageStorySection from "@/components/sections/FranschhoekHeritageStorySection"
import VineyardEscapeSpecialsSection from "@/components/sections/VineyardEscapeSpecialsSection"
import FarmsteadGallerySection from "@/components/sections/FarmsteadGallerySection"
import GuestWhispersSection from "@/components/sections/GuestWhispersSection"
import FarmRhythmHoursSection from "@/components/sections/FarmRhythmHoursSection"
import BookYourFarmstaySection from "@/components/sections/BookYourFarmstaySection"
import FindDieOpstalSection from "@/components/sections/FindDieOpstalSection"
export default function HomePage() {
return (
<>
<CapeDutchHomesteadHeroSection />
<FiveRoomHomesteadSection />
<FranschhoekHeritageStorySection />
<VineyardEscapeSpecialsSection />
<FarmsteadGallerySection />
<GuestWhispersSection />
<FarmRhythmHoursSection />
<BookYourFarmstaySection />
<FindDieOpstalSection />
</>
)
}