From 8ec773ac64405f4ac8feac5276f4086f50a70ec3 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 14 Jul 2026 17:42:05 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/app/page.tsx diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..d75b837 --- /dev/null +++ b/src/app/page.tsx @@ -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 ( + <> + + + + + + + + + + + ) +}