This commit is contained in:
Vula Builder
2026-06-03 16:38:50 +00:00
parent 56f013d4f9
commit 27d93d09ce
+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 />
</>
);
}