From a63ec2a905de5f0e4e941cbc15100132f5a1971f Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 3 Aug 2026 11:42:08 +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..c36ebb2 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,29 @@ +import HeroSection from "@/components/sections/HeroSection" +import SignatureServicesSection from "@/components/sections/SignatureServicesSection" +import SalonStorySection from "@/components/sections/SalonStorySection" +import SalonDifferenceSection from "@/components/sections/SalonDifferenceSection" +import CurrentOffersSection from "@/components/sections/CurrentOffersSection" +import SalonGallerySection from "@/components/sections/SalonGallerySection" +import ClientStoriesSection from "@/components/sections/ClientStoriesSection" +import SalonInsightsSection from "@/components/sections/SalonInsightsSection" +import BookNowSection from "@/components/sections/BookNowSection" +import LocationContactSection from "@/components/sections/LocationContactSection" +import BusinessHoursSection from "@/components/sections/BusinessHoursSection" + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + + ) +}