From 553ea62e42d705e506d29cefd096bdc8e170cda6 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 14 Jul 2026 18:35:15 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 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..df4589b --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,30 @@ +import Link from "next/link"; +import { useMedusaProducts } from "@/hooks/useMedusaProducts"; +import { useMedusaCart } from "@/hooks/useMedusaCart"; +import MoltenRockHeroSection from "@/components/sections/MoltenRockHeroSection"; +import BespokeSafariExperiencesSection from "@/components/sections/BespokeSafariExperiencesSection"; +import SixSanctuarySuitesSection from "@/components/sections/SixSanctuarySuitesSection"; +import MoltenRockOriginsSection from "@/components/sections/MoltenRockOriginsSection"; +import ExclusiveRetreatOffersSection from "@/components/sections/ExclusiveRetreatOffersSection"; +import MoltenMomentsGallerySection from "@/components/sections/MoltenMomentsGallerySection"; +import GuestReverieTestimonialsSection from "@/components/sections/GuestReverieTestimonialsSection"; +import FieldNotesJournalSection from "@/components/sections/FieldNotesJournalSection"; +import DirectBookingCTASection from "@/components/sections/DirectBookingCTASection"; +import PrivateReserveContactSection from "@/components/sections/PrivateReserveContactSection"; + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + ); +}