Update src/app/about/page.tsx

This commit is contained in:
2026-03-03 11:00:12 +00:00
parent cd1cca2e32
commit b2ac57873e

View File

@@ -9,10 +9,10 @@ import { Heart } from 'lucide-react';
export default function AboutPage() {
const navItems = [
{ name: "Shop", id: "shop" },
{ name: "Collections", id: "collections" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" },
{ name: "Collections", id: "/collections" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Cart", id: "https://example.com/cart" },
];
@@ -43,8 +43,8 @@ export default function AboutPage() {
]}
useInvertedBackground={false}
buttons={[
{ text: "Shop Now", href: "shop" },
{ text: "Design Consultation", href: "contact" }
{ text: "Shop Now", href: "/shop" },
{ text: "Design Consultation", href: "/contact" }
]}
buttonAnimation="slide-up"
/>
@@ -92,17 +92,17 @@ export default function AboutPage() {
columns={[
{
title: "Shop", items: [
{ label: "All Furniture", href: "shop" },
{ label: "Seating", href: "shop" },
{ label: "Tables", href: "shop" },
{ label: "Storage", href: "shop" },
{ label: "New Arrivals", href: "shop" }
{ label: "All Furniture", href: "/shop" },
{ label: "Seating", href: "/shop" },
{ label: "Tables", href: "/shop" },
{ label: "Storage", href: "/shop" },
{ label: "New Arrivals", href: "/shop" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "about" },
{ label: "Design Philosophy", href: "about" },
{ label: "About Us", href: "/about" },
{ label: "Design Philosophy", href: "/about" },
{ label: "Sustainability", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Press", href: "#" }
@@ -110,7 +110,7 @@ export default function AboutPage() {
},
{
title: "Support", items: [
{ label: "Contact Us", href: "contact" },
{ label: "Contact Us", href: "/contact" },
{ label: "Shipping Info", href: "#" },
{ label: "Returns", href: "#" },
{ label: "Care Guide", href: "#" },