From 2d0624cd6a704879bac8b6f993b8e075340a960f Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Thu, 4 Jun 2026 11:25:10 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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..0bd0577 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,27 @@ +import HeroSection from "@/components/sections/HeroSection"; +import AboutSection from "@/components/sections/AboutSection"; +import PracticeAreasSection from "@/components/sections/PracticeAreasSection"; +import ServicesSection from "@/components/sections/ServicesSection"; +import CaseStudiesSection from "@/components/sections/CaseStudiesSection"; +import TeamSection from "@/components/sections/TeamSection"; +import TestimonialsSection from "@/components/sections/TestimonialsSection"; +import BookingSection from "@/components/sections/BookingSection"; +import GallerySection from "@/components/sections/GallerySection"; +import ContactSection from "@/components/sections/ContactSection"; + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + ); +}