diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 5f0b260..e657fe1 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -33,6 +33,7 @@ export default function BlogPage() { { "name": "Menu", "id": "menu" }, { "name": "Banquets", "id": "banquets" }, { "name": "Delivery", "id": "delivery" }, + { "name": "Shop", "id": "/shop" }, { "name": "Contacts", "id": "contacts" } ]} button={{ "text": "Book a Table", "href": "#contacts" }} diff --git a/src/app/page.tsx b/src/app/page.tsx index 7392bdb..d9d5b3d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,6 +33,8 @@ export default function KazkovyyDimPage() { { name: "Menu", id: "menu" }, { name: "Banquets", id: "banquets" }, { name: "Delivery", id: "delivery" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" }, { name: "Contacts", id: "contacts" } ]} button={{ diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 8ca2b0d..0e52555 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -90,8 +90,8 @@ export default function ProductPage({ params }: ProductPageProps) { { "name": "Menu", "id": "menu" }, { "name": "Banquets", "id": "banquets" }, { "name": "Delivery", "id": "delivery" }, - { "name": "Contacts", "id": "contacts" }, - { "name": "Shop", "id": "/shop" } + { "name": "Blog", "id": "/blog" }, + { "name": "Contacts", "id": "contacts" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} navItemClassName="text-sm font-medium hover:text-primary-cta transition-colors" @@ -168,8 +168,8 @@ export default function ProductPage({ params }: ProductPageProps) { { "name": "Menu", "id": "menu" }, { "name": "Banquets", "id": "banquets" }, { "name": "Delivery", "id": "delivery" }, - { "name": "Contacts", "id": "contacts" }, - { "name": "Shop", "id": "/shop" } + { "name": "Blog", "id": "/blog" }, + { "name": "Contacts", "id": "contacts" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} navItemClassName="text-sm font-medium hover:text-primary-cta transition-colors" @@ -253,8 +253,8 @@ export default function ProductPage({ params }: ProductPageProps) { { "name": "Menu", "id": "menu" }, { "name": "Banquets", "id": "banquets" }, { "name": "Delivery", "id": "delivery" }, - { "name": "Contacts", "id": "contacts" }, - { "name": "Shop", "id": "/shop" } + { "name": "Blog", "id": "/blog" }, + { "name": "Contacts", "id": "contacts" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} navItemClassName="text-sm font-medium hover:text-primary-cta transition-colors" diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index f1422cd..8940b21 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -43,8 +43,8 @@ export default function ShopPage() { { "name": "Menu", "id": "menu" }, { "name": "Banquets", "id": "banquets" }, { "name": "Delivery", "id": "delivery" }, - { "name": "Contacts", "id": "contacts" }, - { "name": "Shop", "id": "/shop" } + { "name": "Blog", "id": "/blog" }, + { "name": "Contacts", "id": "contacts" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} navItemClassName="text-sm font-medium hover:text-primary-cta transition-colors" @@ -120,8 +120,8 @@ export default function ShopPage() { { "name": "Menu", "id": "menu" }, { "name": "Banquets", "id": "banquets" }, { "name": "Delivery", "id": "delivery" }, - { "name": "Contacts", "id": "contacts" }, - { "name": "Shop", "id": "/shop" } + { "name": "Blog", "id": "/blog" }, + { "name": "Contacts", "id": "contacts" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} navItemClassName="text-sm font-medium hover:text-primary-cta transition-colors"