Update src/app/shop/page.tsx

This commit is contained in:
2026-02-20 12:12:10 +00:00
parent 7db6806ba0
commit 3593da4624

View File

@@ -50,7 +50,7 @@ export default function ShopPage() {
columns={[
{
title: "Content", items: [
{ label: "Articles", href: "#blog" },
{ label: "Articles", href: "/blog" },
{ label: "Featured", href: "#featured" },
{ label: "Categories", href: "#" },
{ label: "Archive", href: "#" }
@@ -58,7 +58,7 @@ export default function ShopPage() {
},
{
title: "Connect", items: [
{ label: "Newsletter", href: "#newsletter" },
{ label: "Newsletter", href: "newsletter" },
{ label: "Twitter", href: "https://twitter.com" },
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "Email", href: "mailto:hello@myblog.com" }
@@ -66,9 +66,9 @@ export default function ShopPage() {
},
{
title: "About", items: [
{ label: "About Me", href: "#about" },
{ label: "Contact", href: "#contact" },
{ label: "Collaborate", href: "#contact" },
{ label: "About Me", href: "about" },
{ label: "Contact", href: "contact" },
{ label: "Collaborate", href: "contact" },
{ label: "Advertise", href: "#" }
]
},
@@ -129,7 +129,7 @@ export default function ShopPage() {
columns={[
{
title: "Content", items: [
{ label: "Articles", href: "#blog" },
{ label: "Articles", href: "/blog" },
{ label: "Featured", href: "#featured" },
{ label: "Categories", href: "#" },
{ label: "Archive", href: "#" }
@@ -137,7 +137,7 @@ export default function ShopPage() {
},
{
title: "Connect", items: [
{ label: "Newsletter", href: "#newsletter" },
{ label: "Newsletter", href: "newsletter" },
{ label: "Twitter", href: "https://twitter.com" },
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "Email", href: "mailto:hello@myblog.com" }
@@ -145,9 +145,9 @@ export default function ShopPage() {
},
{
title: "About", items: [
{ label: "About Me", href: "#about" },
{ label: "Contact", href: "#contact" },
{ label: "Collaborate", href: "#contact" },
{ label: "About Me", href: "about" },
{ label: "Contact", href: "contact" },
{ label: "Collaborate", href: "contact" },
{ label: "Advertise", href: "#" }
]
},
@@ -165,4 +165,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}