From 9f9ce977cde142a70f0bbe82001dc590a7b077f3 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 5 Aug 2026 18:14:35 +0000 Subject: [PATCH] Deploy --- src/app/gallery/page.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/app/gallery/page.tsx diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx new file mode 100644 index 0000000..bb8e40e --- /dev/null +++ b/src/app/gallery/page.tsx @@ -0,0 +1,13 @@ +import GalleryBannerSection from "@/components/sections/GalleryBannerSection"; +import FirmLifeGallerySection from "@/components/sections/FirmLifeGallerySection"; +import ConsultationCTASection from "@/components/sections/ConsultationCTASection"; + +export default function GalleryPage() { + return ( + <> + + + + + ); +}