From 27d93d09ce27b5cec551fe28558586ea0735623d Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 3 Jun 2026 16:38:50 +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..bccf268 --- /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 ( + <> + + + + + + + + ); +}