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