Update src/app/shop/[id]/page.tsx

This commit is contained in:
2026-02-20 12:12:09 +00:00
parent 16aecf81fb
commit 7db6806ba0

View File

@@ -100,7 +100,7 @@ export default function ProductPage({ params }: ProductPageProps) {
columns={[
{
title: "Content", items: [
{ label: "Articles", href: "#blog" },
{ label: "Articles", href: "/blog" },
{ label: "Featured", href: "#featured" },
{ label: "Categories", href: "#" },
{ label: "Archive", href: "#" }
@@ -108,7 +108,7 @@ export default function ProductPage({ params }: ProductPageProps) {
},
{
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" }
@@ -116,9 +116,9 @@ export default function ProductPage({ params }: ProductPageProps) {
},
{
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: "#" }
]
},
@@ -180,7 +180,7 @@ export default function ProductPage({ params }: ProductPageProps) {
columns={[
{
title: "Content", items: [
{ label: "Articles", href: "#blog" },
{ label: "Articles", href: "/blog" },
{ label: "Featured", href: "#featured" },
{ label: "Categories", href: "#" },
{ label: "Archive", href: "#" }
@@ -188,7 +188,7 @@ export default function ProductPage({ params }: ProductPageProps) {
},
{
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" }
@@ -196,9 +196,9 @@ export default function ProductPage({ params }: ProductPageProps) {
},
{
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: "#" }
]
},
@@ -284,7 +284,7 @@ export default function ProductPage({ params }: ProductPageProps) {
columns={[
{
title: "Content", items: [
{ label: "Articles", href: "#blog" },
{ label: "Articles", href: "/blog" },
{ label: "Featured", href: "#featured" },
{ label: "Categories", href: "#" },
{ label: "Archive", href: "#" }
@@ -292,7 +292,7 @@ export default function ProductPage({ params }: ProductPageProps) {
},
{
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" }
@@ -300,9 +300,9 @@ export default function ProductPage({ params }: ProductPageProps) {
},
{
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: "#" }
]
},
@@ -320,4 +320,4 @@ export default function ProductPage({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}