From 17b252eb4739d334d77176caa5f465a1bcb35533 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 17:41:16 +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..e8d8235 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,29 @@ +import HeroSection from "@/components/sections/HeroSection" +import LuxuryAccommodationsSection from "@/components/sections/LuxuryAccommodationsSection" +import BushStorySection from "@/components/sections/BushStorySection" +import SafariExperiencesSection from "@/components/sections/SafariExperiencesSection" +import CurrentOffersSection from "@/components/sections/CurrentOffersSection" +import GuestGallerySection from "@/components/sections/GuestGallerySection" +import LodgeJournalSection from "@/components/sections/LodgeJournalSection" +import GuestTestimonialsSection from "@/components/sections/GuestTestimonialsSection" +import BookingCTASection from "@/components/sections/BookingCTASection" +import ContactSection from "@/components/sections/ContactSection" +import LodgePoliciesSection from "@/components/sections/LodgePoliciesSection" + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + + ) +}