From 54a6dc7872687debe06d5f4b503f7a1bac23abcd Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 13:38:53 +0000 Subject: [PATCH] Update src/app/approach/page.tsx --- src/app/approach/page.tsx | 68 ++++++++++++++++++--------------------- 1 file changed, 32 insertions(+), 36 deletions(-) diff --git a/src/app/approach/page.tsx b/src/app/approach/page.tsx index a2643f6..4d1dd9b 100644 --- a/src/app/approach/page.tsx +++ b/src/app/approach/page.tsx @@ -8,6 +8,36 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +const consistentNavItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "Approach", id: "/approach" }, + { name: "Company", id: "/company" }, + { name: "Cases", id: "/cases" }, + { name: "Insights", id: "/insights" }, + { name: "Careers", id: "/careers" }, + { name: "Contact", id: "/contact" }, +]; + +const consistentFooterColumns = [ + { + title: "Navigation", items: [ + { label: "Home", href: "/" }, + { label: "Services", href: "/services" }, + { label: "Company", href: "/company" }, + { label: "Insights", href: "/insights" }, + { label: "Careers", href: "/careers" }, + { label: "Contact", href: "/contact" } + ] + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#privacy" }, + { label: "Terms of Service", href: "#terms" } + ] + } +]; + export default function LandingPage() { return ( @@ -96,24 +109,7 @@ export default function LandingPage() {