Update src/app/portfolio/page.tsx

This commit is contained in:
2026-03-05 18:12:14 +00:00
parent b61df6e60d
commit 1c098bae11

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -140,7 +175,8 @@ export default function PortfolioPage() {
</div>
<div id="footer" data-section="footer">
<FooterCard
<FooterBase
columns={footerColumns}
logoText="VintDragon"
copyrightText="© 2025 VintDragon. Driving Business Growth Through Digital Excellence."
/>