This commit is contained in:
Vula Builder
2026-06-04 09:16:59 +00:00
parent 5850d4d5f5
commit e1a315f6b3
+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 GallerySection from "@/components/sections/GallerySection";
import ContactSection from "@/components/sections/ContactSection";
export default function HomePage() {
return (
<>
<HeroSection />
<ServicesSection />
<AboutSection />
<GallerySection />
<TestimonialsSection />
<ContactSection />
</>
);
}