diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 0171281..75b0bdc 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,22 +6,20 @@ import MediaAbout from "@/components/sections/about/MediaAbout"; import FeatureBento from "@/components/sections/feature/FeatureBento"; import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import Link from "next/link"; import { Sparkles, TrendingUp } from "lucide-react"; export default function AboutPage() { const navItems = [ - { name: "Features", id: "features" }, - { name: "About", id: "about" }, - { name: "Pricing", id: "pricing" }, - { name: "Docs", id: "https://docs.example.com" }, + { name: "Features", id: "/features" }, + { name: "About", id: "/about" }, + { name: "Pricing", id: "/pricing" }, + { name: "Docs", id: "/docs" }, { name: "Contact", id: "contact" }, ]; const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Features", href: "#features" }, { label: "Pricing", href: "#pricing" }, { label: "Documentation", href: "/docs" }, @@ -29,8 +27,7 @@ export default function AboutPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, @@ -38,8 +35,7 @@ export default function AboutPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Community", href: "#" }, { label: "Tutorials", href: "#" }, { label: "Templates", href: "#" }, @@ -47,8 +43,7 @@ export default function AboutPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Security", href: "#" }, @@ -73,13 +68,7 @@ export default function AboutPage() {
@@ -101,28 +90,16 @@ export default function AboutPage() {© 2025 Replit Automation. All rights reserved.
-