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