From e7c268aeda3f1594f130e61e98c45bc3e4c95fa3 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 14 Jul 2026 19:12:48 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 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..825edaf --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,29 @@ +import BushveldHeroSection from "@/components/sections/BushveldHeroSection"; +import ThornveldExperiencesSection from "@/components/sections/ThornveldExperiencesSection"; +import OurFamilyRootsSection from "@/components/sections/OurFamilyRootsSection"; +import SeasonalSpecialsSection from "@/components/sections/SeasonalSpecialsSection"; +import GuestVoicesSection from "@/components/sections/GuestVoicesSection"; +import BushGallerySection from "@/components/sections/BushGallerySection"; +import SightingsJournalSection from "@/components/sections/SightingsJournalSection"; +import UnhurriedBookingCTASection from "@/components/sections/UnhurriedBookingCTASection"; +import LocationFindSection from "@/components/sections/LocationFindSection"; +import ContactEnquirySection from "@/components/sections/ContactEnquirySection"; +import KnowBeforeYouGoSection from "@/components/sections/KnowBeforeYouGoSection"; + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + + ); +}