This commit is contained in:
Vula Builder
2026-08-03 11:42:08 +00:00
parent 818f3ca417
commit a63ec2a905
+29
View File
@@ -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 (
<>
<HeroSection />
<SignatureServicesSection />
<SalonStorySection />
<SalonDifferenceSection />
<CurrentOffersSection />
<SalonGallerySection />
<ClientStoriesSection />
<SalonInsightsSection />
<BookNowSection />
<LocationContactSection />
<BusinessHoursSection />
</>
)
}