Update src/app/shop/[id]/page.tsx
This commit is contained in:
@@ -93,12 +93,8 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="LogisticNet"
|
||||
navItems={[
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"Solutions","id":"features"},
|
||||
{"name":"Network","id":"about"},
|
||||
{"name":"Case Studies","id":"testimonials"},
|
||||
{"name":"Pricing","id":"pricing"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
@@ -111,9 +107,12 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
logoText="LogisticNet"
|
||||
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
|
||||
columns={[
|
||||
{"title":"Solutions","items":[{"label":"Fleet Management","href":"features"},{"label":"Warehouse Network","href":"about"},{"label":"Demand Forecasting","href":"features"},{"label":"Last-Mile Delivery","href":"features"}]},
|
||||
{"title":"Company","items":[{"label":"About Us","href":"/about"},{"label":"Pricing","href":"/pricing"},{"label":"Case Studies","href":"testimonials"}]},
|
||||
{"title":"Support","items":[{"label":"Contact Us","href":"/contact"}]}
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Shop", href: "/shop" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -141,12 +140,8 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="LogisticNet"
|
||||
navItems={[
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"Solutions","id":"features"},
|
||||
{"name":"Network","id":"about"},
|
||||
{"name":"Case Studies","id":"testimonials"},
|
||||
{"name":"Pricing","id":"pricing"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
@@ -167,9 +162,12 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
logoText="LogisticNet"
|
||||
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
|
||||
columns={[
|
||||
{"title":"Solutions","items":[{"label":"Fleet Management","href":"features"},{"label":"Warehouse Network","href":"about"},{"label":"Demand Forecasting","href":"features"},{"label":"Last-Mile Delivery","href":"features"}]},
|
||||
{"title":"Company","items":[{"label":"About Us","href":"/about"},{"label":"Pricing","href":"/pricing"},{"label":"Case Studies","href":"testimonials"}]},
|
||||
{"title":"Support","items":[{"label":"Contact Us","href":"/contact"}]}
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Shop", href: "/shop" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -196,12 +194,8 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="LogisticNet"
|
||||
navItems={[
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"Solutions","id":"features"},
|
||||
{"name":"Network","id":"about"},
|
||||
{"name":"Case Studies","id":"testimonials"},
|
||||
{"name":"Pricing","id":"pricing"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
@@ -247,9 +241,12 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
logoText="LogisticNet"
|
||||
copyrightText="© 2025 LogisticNet. All rights reserved. Integrated Logistics for the Modern Enterprise."
|
||||
columns={[
|
||||
{"title":"Solutions","items":[{"label":"Fleet Management","href":"features"},{"label":"Warehouse Network","href":"about"},{"label":"Demand Forecasting","href":"features"},{"label":"Last-Mile Delivery","href":"features"}]},
|
||||
{"title":"Company","items":[{"label":"About Us","href":"/about"},{"label":"Pricing","href":"/pricing"},{"label":"Case Studies","href":"testimonials"}]},
|
||||
{"title":"Support","items":[{"label":"Contact Us","href":"/contact"}]}
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Shop", href: "/shop" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user