Update src/app/shop/page.tsx
This commit is contained in:
@@ -35,11 +35,11 @@ export default function ShopPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Brew Haven"
|
||||
navItems={[
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"About","id":"about"},
|
||||
{"name":"Menu","id":"products"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||
/>
|
||||
@@ -50,11 +50,36 @@ export default function ShopPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{"title":"Navigate","items":[{"label":"Home","href":"#hero"},{"label":"About","href":"#about"},{"label":"Menu","href":"#products"},{"label":"Contact","href":"#contact"}]},
|
||||
{"title":"Connect","items":[{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Twitter","href":"https://twitter.com"},{"label":"Email","href":"mailto:hello@brewhaven.com"}]},
|
||||
{"title":"Hours","items":[{"label":"Monday - Friday: 6 AM - 8 PM","href":"#"},{"label":"Saturday - Sunday: 7 AM - 9 PM","href":"#"},{"label":"Closed Holidays","href":"#"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"}]}
|
||||
]
|
||||
{
|
||||
title: "Navigate", items: [
|
||||
{ label: "Home", href: "#hero" },
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Menu", href: "#products" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "Facebook", href: "https://facebook.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
{ label: "Email", href: "mailto:hello@brewhaven.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Hours", items: [
|
||||
{ label: "Monday - Friday: 6 AM - 8 PM", href: "#" },
|
||||
{ label: "Saturday - Sunday: 7 AM - 9 PM", href: "#" },
|
||||
{ label: "Closed Holidays", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
bottomLeftText="© 2025 Brew Haven. All rights reserved."
|
||||
bottomRightText="Crafted with ☕ and passion"
|
||||
/>
|
||||
@@ -82,11 +107,11 @@ export default function ShopPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Brew Haven"
|
||||
navItems={[
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"About","id":"about"},
|
||||
{"name":"Menu","id":"products"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||
/>
|
||||
@@ -105,11 +130,36 @@ export default function ShopPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{"title":"Navigate","items":[{"label":"Home","href":"#hero"},{"label":"About","href":"#about"},{"label":"Menu","href":"#products"},{"label":"Contact","href":"#contact"}]},
|
||||
{"title":"Connect","items":[{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Twitter","href":"https://twitter.com"},{"label":"Email","href":"mailto:hello@brewhaven.com"}]},
|
||||
{"title":"Hours","items":[{"label":"Monday - Friday: 6 AM - 8 PM","href":"#"},{"label":"Saturday - Sunday: 7 AM - 9 PM","href":"#"},{"label":"Closed Holidays","href":"#"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"}]}
|
||||
]
|
||||
{
|
||||
title: "Navigate", items: [
|
||||
{ label: "Home", href: "#hero" },
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Menu", href: "#products" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "Facebook", href: "https://facebook.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
{ label: "Email", href: "mailto:hello@brewhaven.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Hours", items: [
|
||||
{ label: "Monday - Friday: 6 AM - 8 PM", href: "#" },
|
||||
{ label: "Saturday - Sunday: 7 AM - 9 PM", href: "#" },
|
||||
{ label: "Closed Holidays", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
bottomLeftText="© 2025 Brew Haven. All rights reserved."
|
||||
bottomRightText="Crafted with ☕ and passion"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user