diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 79f1a7e..cfbe902 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,16 +7,16 @@ import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve"; import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Sparkles, Users, Heart } from "lucide-react"; +import { Target, Users, Sparkles, Heart } from "lucide-react"; export default function AboutPage() { const navItems = [ - { name: "Home", id: "/" }, - { name: "Browse Notes", id: "/" }, - { name: "Sell Notes", id: "/" }, - { name: "About", id: "/about" }, - { name: "Pricing", id: "/pricing" }, - { name: "Contact", id: "/contact" }, + { name: "Home", id: "home" }, + { name: "Browse Notes", id: "browse" }, + { name: "Sell Notes", id: "sell" }, + { name: "About", id: "about" }, + { name: "Pricing", id: "pricing" }, + { name: "Contact", id: "contact" }, ]; const footerColumns = [ @@ -73,74 +73,74 @@ export default function AboutPage() {