From 035b5e604f92590c260bd6c218299e0f60b4d972 Mon Sep 17 00:00:00 2001 From: development Date: Sun, 28 Dec 2025 13:50:57 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8ac0862..cdd848c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1261,4 +1261,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file From 8dd32a99098f70a44889815b9850969e0703ed08 Mon Sep 17 00:00:00 2001 From: development Date: Sun, 28 Dec 2025 13:50:57 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 105 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 103 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index dac62e0..45bf246 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,9 +4,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCardNine'; +import TeamCardFive from '@/components/sections/team/TeamCardFive'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSplit from '@/components/sections/footer/FooterSplit'; -import { Phone, Mail, MapPin } from "lucide-react"; +import { Phone, Mail, MapPin, Users } from "lucide-react"; export default function Page() { return ( @@ -28,6 +29,7 @@ export default function Page() { navItems={[ { name: "Home", id: "hero" }, { name: "Our Cases", id: "cases" }, + { name: "Team", id: "team" }, { name: "Contact", id: "contact" } ]} button={{ @@ -95,6 +97,104 @@ export default function Page() { /> +
+ +
+
); -} +} \ No newline at end of file