From 22063f67594b5bd0252fc7e8f56a2b4b515c37d2 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 5 Aug 2026 18:14:36 +0000 Subject: [PATCH] Deploy --- src/app/our-team/page.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/app/our-team/page.tsx diff --git a/src/app/our-team/page.tsx b/src/app/our-team/page.tsx new file mode 100644 index 0000000..af5abbe --- /dev/null +++ b/src/app/our-team/page.tsx @@ -0,0 +1,17 @@ +import TeamBannerSection from "@/components/sections/TeamBannerSection"; +import PartnerProfilesSection from "@/components/sections/PartnerProfilesSection"; +import CareerOpportunitiesSection from "@/components/sections/CareerOpportunitiesSection"; +import ClientTestimonialsSection from "@/components/sections/ClientTestimonialsSection"; +import ConsultationCTASection from "@/components/sections/ConsultationCTASection"; + +export default function OurTeamPage() { + return ( + <> + + + + + + + ); +}