Update src/app/shop/page.tsx

This commit is contained in:
2026-02-25 06:07:19 +00:00
parent 53fcf469b3
commit ea29f5f087

View File

@@ -36,12 +36,7 @@ function ShopPageContent() {
<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: "/" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>
@@ -54,9 +49,12 @@ function ShopPageContent() {
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: "Contact Us", href: "/contact" }
]
}
]}
/>
</div>
@@ -83,12 +81,7 @@ function ShopPageContent() {
<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: "/" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>
@@ -109,9 +102,12 @@ function ShopPageContent() {
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: "Contact Us", href: "/contact" }
]
}
]}
/>
</div>