From ded9535b0f6a3a2aae1ca3c221659051a0e6adca Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:26:34 +0000 Subject: [PATCH] Switch to version 2: modified src/app/portfolio/page.tsx --- src/app/portfolio/page.tsx | 38 +++++++++++++++++++++++++++++++++----- 1 file changed, 33 insertions(+), 5 deletions(-) diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx index 260265d..110ec48 100644 --- a/src/app/portfolio/page.tsx +++ b/src/app/portfolio/page.tsx @@ -5,7 +5,7 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating import HeroCentered from "@/components/sections/hero/HeroCentered"; import FeatureBento from "@/components/sections/feature/FeatureBento"; import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; -import FooterCard from "@/components/sections/footer/FooterCard"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import Link from "next/link"; import { TrendingUp, @@ -24,6 +24,35 @@ export default function PortfolioPage() { { name: "Process", id: "/process" }, ]; + const footerColumns = [ + { + title: "Services", items: [ + { label: "Web Design & Development", href: "/services" }, + { label: "Digital Marketing Strategy", href: "/services" }, + { label: "SEO & Search Visibility", href: "/services" }, + { label: "Paid Advertising", href: "/services" }, + { label: "AI Optimization", href: "/services" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Portfolio", href: "/portfolio" }, + { label: "Process", href: "#process" }, + { label: "Contact", href: "/contact" }, + { label: "Blog", href: "#" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Cookie Policy", href: "#" }, + { label: "Disclaimer", href: "#" }, + ], + }, + ]; + return ( @@ -140,8 +168,8 @@ export default function PortfolioPage() {