diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 7ff9b38..1e09af7 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -28,13 +28,13 @@ export default function BlogPage() {
@@ -64,10 +64,10 @@ export default function BlogPage() {
columns={[
{
title: "Shop", items: [
- { label: "All Products", href: "products" },
- { label: "Collections", href: "collections" },
+ { label: "All Products", href: "/shop" },
+ { label: "Collections", href: "/shop" },
{ label: "Custom Orders", href: "contact" },
- { label: "Sale Items", href: "products" }
+ { label: "Sale Items", href: "/shop" }
]
},
{
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 19b0e27..ddb7ee3 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -29,14 +29,14 @@ export default function LandingPage() {
@@ -53,7 +53,7 @@ export default function LandingPage() {
imageAlt="Colorful artisan bee cups collection"
imagePosition="right"
buttons={[
- { text: "Shop Collection", href: "products" },
+ { text: "Shop Collection", href: "/shop" },
{ text: "Learn More", href: "about" }
]}
/>
@@ -211,10 +211,10 @@ export default function LandingPage() {
columns={[
{
title: "Shop", items: [
- { label: "All Products", href: "products" },
- { label: "Collections", href: "collections" },
+ { label: "All Products", href: "/shop" },
+ { label: "Collections", href: "/shop" },
{ label: "Custom Orders", href: "contact" },
- { label: "Sale Items", href: "products" }
+ { label: "Sale Items", href: "/shop" }
]
},
{