diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 758e3a7..f465e19 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -10,10 +10,10 @@ import { Award } from "lucide-react"; export default function AboutPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Services", id: "services" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ @@ -82,7 +82,6 @@ export default function AboutPage() { { text: "Schedule Service", href: "/contact" }, ]} className="py-20" - containerClassName="max-w-6xl grid grid-cols-1 md:grid-cols-2 gap-12 items-center" titleClassName="text-5xl font-bold mb-6" descriptionClassName="text-lg opacity-80 leading-relaxed mb-8" tagClassName="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-opacity-10 mb-6" @@ -139,4 +138,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +}