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 ( + <> + + + + + + + + + + + ) +}