From 9a3ea988a178ee7556a2dfc2506d1364ee357079 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 5 Aug 2026 18:14:33 +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..45215b5 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,27 @@ +import FirmWelcomeSection from "@/components/sections/FirmWelcomeSection" +import FirmOverviewSection from "@/components/sections/FirmOverviewSection" +import PracticeAreasSection from "@/components/sections/PracticeAreasSection" +import SpecialOffersSection from "@/components/sections/SpecialOffersSection" +import LegalTeamSection from "@/components/sections/LegalTeamSection" +import ClientTestimonialsSection from "@/components/sections/ClientTestimonialsSection" +import OfficeGallerySection from "@/components/sections/OfficeGallerySection" +import ConsultationCTASection from "@/components/sections/ConsultationCTASection" +import FirmContactSection from "@/components/sections/FirmContactSection" +import BusinessHoursSection from "@/components/sections/BusinessHoursSection" + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + ) +}