diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index c8fb6c4..e0b5320 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -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) { ); -} \ No newline at end of file +}