Update src/app/shop/page.tsx
This commit is contained in:
@@ -36,11 +36,13 @@ function ShopPageContent() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Brew Haven"
|
||||
navItems={[
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"About","id":"about"},
|
||||
{"name":"Menu","id":"products"},
|
||||
{"name":"Reviews","id":"testimonials"},
|
||||
{"name":"Contact","id":"contact"}
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||
/>
|
||||
@@ -53,7 +55,7 @@ function ShopPageContent() {
|
||||
logoText="Brew Haven"
|
||||
columns={[
|
||||
{"title":"Menu","items":[{"label":"Coffee Drinks","href":"#products"},{"label":"Pastries","href":"#"},{"label":"Seasonal Specials","href":"#"},{"label":"Gift Cards","href":"#"}]},
|
||||
{"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"#"}]},
|
||||
{"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"/blog"}]},
|
||||
{"title":"Connect","items":[{"label":"Contact Us","href":"#contact"},{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Twitter","href":"https://twitter.com"}]},
|
||||
{"title":"Visit","items":[{"label":"Hours","href":"#"},{"label":"Location","href":"#"},{"label":"Parking Info","href":"#"},{"label":"Directions","href":"#"}]}
|
||||
]}
|
||||
@@ -84,11 +86,13 @@ function ShopPageContent() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Brew Haven"
|
||||
navItems={[
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"About","id":"about"},
|
||||
{"name":"Menu","id":"products"},
|
||||
{"name":"Reviews","id":"testimonials"},
|
||||
{"name":"Contact","id":"contact"}
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||
/>
|
||||
@@ -109,7 +113,7 @@ function ShopPageContent() {
|
||||
logoText="Brew Haven"
|
||||
columns={[
|
||||
{"title":"Menu","items":[{"label":"Coffee Drinks","href":"#products"},{"label":"Pastries","href":"#"},{"label":"Seasonal Specials","href":"#"},{"label":"Gift Cards","href":"#"}]},
|
||||
{"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"#"}]},
|
||||
{"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"/blog"}]},
|
||||
{"title":"Connect","items":[{"label":"Contact Us","href":"#contact"},{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Twitter","href":"https://twitter.com"}]},
|
||||
{"title":"Visit","items":[{"label":"Hours","href":"#"},{"label":"Location","href":"#"},{"label":"Parking Info","href":"#"},{"label":"Directions","href":"#"}]}
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user