diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 039694f..03c05ca 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -19,30 +19,27 @@ export default function AboutPage() {
const footerColumns = [
{
- title: "Products",
- items: [
- { label: "Shop All", href: "shop" },
+ title: "Products", items: [
+ { label: "Shop All", href: "/shop" },
{ label: "Featured", href: "#featured-products" },
- { label: "Accessories", href: "shop" },
- { label: "Bundles", href: "shop" },
+ { label: "Accessories", href: "/shop" },
+ { label: "Bundles", href: "/shop" },
],
},
{
- title: "Company",
- items: [
- { label: "About RHT", href: "about" },
+ title: "Company", items: [
+ { label: "About RHT", href: "#about" },
{ label: "Engineering", href: "#engineering-highlights" },
{ label: "Careers", href: "#" },
{ label: "Blog", href: "#" },
],
},
{
- title: "Support",
- items: [
- { label: "Help Center", href: "support" },
+ title: "Support", items: [
+ { label: "Help Center", href: "#support" },
{ label: "Compatibility", href: "#compatibility" },
{ label: "Downloads", href: "#" },
- { label: "Contact Us", href: "contact" },
+ { label: "Contact Us", href: "#contact" },
],
},
];
@@ -64,7 +61,7 @@ export default function AboutPage() {