This commit is contained in:
Vula Builder
2026-06-04 11:45:17 +00:00
parent 0208d6789b
commit c8caad4bc6
+19
View File
@@ -0,0 +1,19 @@
import HeroSection from "@/components/sections/HeroSection"
import ServicesSection from "@/components/sections/ServicesSection"
import AboutSection from "@/components/sections/AboutSection"
import TestimonialsSection from "@/components/sections/TestimonialsSection"
import ContactSection from "@/components/sections/ContactSection"
import GallerySection from "@/components/sections/GallerySection"
export default function HomePage() {
return (
<>
<HeroSection />
<AboutSection />
<ServicesSection />
<GallerySection />
<TestimonialsSection />
<ContactSection />
</>
)
}