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 ( + <> + + + + + + + + + + + + ) +}