diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 35ae0ae..579fdbe 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -6,14 +6,14 @@ import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatin
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
import TeamCardEleven from "@/components/sections/team/TeamCardEleven";
import FooterBase from "@/components/sections/footer/FooterBase";
-import { Sparkles, ArrowUpRight, Users, Trophy } from "lucide-react";
+import { Sparkles, Users } from "lucide-react";
const NAV_ITEMS = [
{ name: "Home", id: "/" },
- { name: "Work", id: "work" },
+ { name: "Portfolio", id: "/portfolio" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
- { name: "Contact", id: "contact" }
+ { name: "Contact", id: "/contact" }
];
const FOOTER_COLUMNS = [
@@ -22,16 +22,16 @@ const FOOTER_COLUMNS = [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
- { label: "Work", href: "/#work" },
- { label: "Contact", href: "/#contact" },
+ { label: "Work", href: "/portfolio" },
+ { label: "Contact", href: "/contact" },
],
},
{
title: "Services", items: [
- { label: "Web Development", href: "/services" },
- { label: "SEO", href: "/services" },
- { label: "Branding", href: "/services" },
- { label: "UI/UX Design", href: "/services" },
+ { label: "Marketing Strategy", href: "/services" },
+ { label: "Brand Identity", href: "/services" },
+ { label: "Digital Campaigns", href: "/services" },
+ { label: "Social Media Management", href: "/services" },
],
},
{
@@ -62,11 +62,12 @@ export default function AboutPage() {