From c8caad4bc6819e46610865071042e0711dc2c99b Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Thu, 4 Jun 2026 11:45:17 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/app/page.tsx diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..a2c25bf --- /dev/null +++ b/src/app/page.tsx @@ -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 ( + <> + + + + + + + + ) +}