From 15cf10cf880ab5c2dca50bb96d410a6a47c3551d Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 27 Jun 2026 09:51:12 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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..2484833 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,27 @@ +import HeroSection from "@/components/sections/HeroSection" +import MenuSection from "@/components/sections/MenuSection" +import AboutSection from "@/components/sections/AboutSection" +import CampaignsSection from "@/components/sections/CampaignsSection" +import GallerySection from "@/components/sections/GallerySection" +import TeamProfilesSection from "@/components/sections/TeamProfilesSection" +import TestimonialsSection from "@/components/sections/TestimonialsSection" +import ReservationCTASection from "@/components/sections/ReservationCTASection" +import ContactFormSection from "@/components/sections/ContactFormSection" +import LocationSection from "@/components/sections/LocationSection" + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + ); +}