diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx index 260265d..eddb3f5 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 FooterBase from "@/components/sections/footer/FooterBase"; import Link from "next/link"; import { TrendingUp, @@ -24,6 +24,41 @@ export default function PortfolioPage() { { name: "Process", id: "/process" }, ]; + const footerColumns = [ + { + title: "Navigate", items: [ + { label: "Home", href: "/" }, + { label: "Services", href: "/services" }, + { label: "Expertise", href: "/why-vintdragon" }, + { label: "Contact", href: "/contact" }, + ], + }, + { + title: "Services", items: [ + { label: "Cybersecurity", href: "/services" }, + { label: "AI Solutions", href: "/services" }, + { label: "Development", href: "/services" }, + { label: "Consulting", href: "/services" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/" }, + { label: "Blog", href: "/" }, + { label: "Careers", href: "/" }, + { label: "Press", href: "/" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "/" }, + { label: "Terms of Service", href: "/" }, + { label: "Security", href: "/" }, + { label: "Compliance", href: "/" }, + ], + }, + ]; + return (