From e1a315f6b3ff39464f99519b09950ecf92efb0f5 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Thu, 4 Jun 2026 09:16:59 +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..3a9950a --- /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 GallerySection from "@/components/sections/GallerySection"; +import ContactSection from "@/components/sections/ContactSection"; + +export default function HomePage() { + return ( + <> + + + + + + + + ); +}