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