Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-02-16 16:27:03 +00:00
3 changed files with 46 additions and 46 deletions

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';

View File

@@ -85,12 +85,12 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleFullscreen
brandName="Brew Haven"
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Menu","id":"menu"},
{"name":"Team","id":"team"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{ "name": "Home", "id": "/" },
{ "name": "About", "id": "about" },
{ "name": "Menu", "id": "menu" },
{ "name": "Team", "id": "team" },
{ "name": "Contact", "id": "contact" },
{ "name": "Shop", "id": "/shop" }
]}
bottomLeftText="Craft Coffee Culture"
bottomRightText="hello@brewhaven.com"
@@ -105,9 +105,9 @@ export default function ProductPage({ params }: ProductPageProps) {
logoText="Brew Haven"
copyrightText="© 2025 Brew Haven. All rights reserved."
columns={[
{"title":"Menu","items":[{"label":"Coffee Drinks","href":"menu"},{"label":"Pastries","href":"menu"},{"label":"Seasonal Specials","href":"menu"}]},
{"title":"Company","items":[{"label":"About Us","href":"about"},{"label":"Our Team","href":"team"},{"label":"Contact","href":"contact"}]},
{"title":"Connect","items":[{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Email","href":"https://mailto:hello@brewhaven.com"}]}
{ "title": "Menu", "items": [{ "label": "Coffee Drinks", "href": "menu" }, { "label": "Pastries", "href": "menu" }, { "label": "Seasonal Specials", "href": "menu" }] },
{ "title": "Company", "items": [{ "label": "About Us", "href": "about" }, { "label": "Our Team", "href": "team" }, { "label": "Contact", "href": "contact" }] },
{ "title": "Connect", "items": [{ "label": "Instagram", "href": "https://instagram.com" }, { "label": "Facebook", "href": "https://facebook.com" }, { "label": "Email", "href": "https://mailto:hello@brewhaven.com" }] }
]}
/>
</div>
@@ -135,12 +135,12 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleFullscreen
brandName="Brew Haven"
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Menu","id":"menu"},
{"name":"Team","id":"team"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{ "name": "Home", "id": "/" },
{ "name": "About", "id": "about" },
{ "name": "Menu", "id": "menu" },
{ "name": "Team", "id": "team" },
{ "name": "Contact", "id": "contact" },
{ "name": "Shop", "id": "/shop" }
]}
bottomLeftText="Craft Coffee Culture"
bottomRightText="hello@brewhaven.com"
@@ -163,9 +163,9 @@ export default function ProductPage({ params }: ProductPageProps) {
logoText="Brew Haven"
copyrightText="© 2025 Brew Haven. All rights reserved."
columns={[
{"title":"Menu","items":[{"label":"Coffee Drinks","href":"menu"},{"label":"Pastries","href":"menu"},{"label":"Seasonal Specials","href":"menu"}]},
{"title":"Company","items":[{"label":"About Us","href":"about"},{"label":"Our Team","href":"team"},{"label":"Contact","href":"contact"}]},
{"title":"Connect","items":[{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Email","href":"https://mailto:hello@brewhaven.com"}]}
{ "title": "Menu", "items": [{ "label": "Coffee Drinks", "href": "menu" }, { "label": "Pastries", "href": "menu" }, { "label": "Seasonal Specials", "href": "menu" }] },
{ "title": "Company", "items": [{ "label": "About Us", "href": "about" }, { "label": "Our Team", "href": "team" }, { "label": "Contact", "href": "contact" }] },
{ "title": "Connect", "items": [{ "label": "Instagram", "href": "https://instagram.com" }, { "label": "Facebook", "href": "https://facebook.com" }, { "label": "Email", "href": "https://mailto:hello@brewhaven.com" }] }
]}
/>
</div>
@@ -192,12 +192,12 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleFullscreen
brandName="Brew Haven"
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Menu","id":"menu"},
{"name":"Team","id":"team"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{ "name": "Home", "id": "/" },
{ "name": "About", "id": "about" },
{ "name": "Menu", "id": "menu" },
{ "name": "Team", "id": "team" },
{ "name": "Contact", "id": "contact" },
{ "name": "Shop", "id": "/shop" }
]}
bottomLeftText="Craft Coffee Culture"
bottomRightText="hello@brewhaven.com"
@@ -245,9 +245,9 @@ export default function ProductPage({ params }: ProductPageProps) {
logoText="Brew Haven"
copyrightText="© 2025 Brew Haven. All rights reserved."
columns={[
{"title":"Menu","items":[{"label":"Coffee Drinks","href":"menu"},{"label":"Pastries","href":"menu"},{"label":"Seasonal Specials","href":"menu"}]},
{"title":"Company","items":[{"label":"About Us","href":"about"},{"label":"Our Team","href":"team"},{"label":"Contact","href":"contact"}]},
{"title":"Connect","items":[{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Email","href":"https://mailto:hello@brewhaven.com"}]}
{ "title": "Menu", "items": [{ "label": "Coffee Drinks", "href": "menu" }, { "label": "Pastries", "href": "menu" }, { "label": "Seasonal Specials", "href": "menu" }] },
{ "title": "Company", "items": [{ "label": "About Us", "href": "about" }, { "label": "Our Team", "href": "team" }, { "label": "Contact", "href": "contact" }] },
{ "title": "Connect", "items": [{ "label": "Instagram", "href": "https://instagram.com" }, { "label": "Facebook", "href": "https://facebook.com" }, { "label": "Email", "href": "https://mailto:hello@brewhaven.com" }] }
]}
/>
</div>

View File

@@ -35,12 +35,12 @@ export default function ShopPage() {
<NavbarStyleFullscreen
brandName="Brew Haven"
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Menu","id":"menu"},
{"name":"Team","id":"team"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{ "name": "Home", "id": "/" },
{ "name": "About", "id": "about" },
{ "name": "Menu", "id": "menu" },
{ "name": "Team", "id": "team" },
{ "name": "Contact", "id": "contact" },
{ "name": "Shop", "id": "/shop" }
]}
bottomLeftText="Craft Coffee Culture"
bottomRightText="hello@brewhaven.com"
@@ -55,9 +55,9 @@ export default function ShopPage() {
logoText="Brew Haven"
copyrightText="© 2025 Brew Haven. All rights reserved."
columns={[
{"title":"Menu","items":[{"label":"Coffee Drinks","href":"menu"},{"label":"Pastries","href":"menu"},{"label":"Seasonal Specials","href":"menu"}]},
{"title":"Company","items":[{"label":"About Us","href":"about"},{"label":"Our Team","href":"team"},{"label":"Contact","href":"contact"}]},
{"title":"Connect","items":[{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Email","href":"https://mailto:hello@brewhaven.com"}]}
{ "title": "Menu", "items": [{ "label": "Coffee Drinks", "href": "menu" }, { "label": "Pastries", "href": "menu" }, { "label": "Seasonal Specials", "href": "menu" }] },
{ "title": "Company", "items": [{ "label": "About Us", "href": "about" }, { "label": "Our Team", "href": "team" }, { "label": "Contact", "href": "contact" }] },
{ "title": "Connect", "items": [{ "label": "Instagram", "href": "https://instagram.com" }, { "label": "Facebook", "href": "https://facebook.com" }, { "label": "Email", "href": "https://mailto:hello@brewhaven.com" }] }
]}
/>
</div>
@@ -84,12 +84,12 @@ export default function ShopPage() {
<NavbarStyleFullscreen
brandName="Brew Haven"
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Menu","id":"menu"},
{"name":"Team","id":"team"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{ "name": "Home", "id": "/" },
{ "name": "About", "id": "about" },
{ "name": "Menu", "id": "menu" },
{ "name": "Team", "id": "team" },
{ "name": "Contact", "id": "contact" },
{ "name": "Shop", "id": "/shop" }
]}
bottomLeftText="Craft Coffee Culture"
bottomRightText="hello@brewhaven.com"
@@ -112,9 +112,9 @@ export default function ShopPage() {
logoText="Brew Haven"
copyrightText="© 2025 Brew Haven. All rights reserved."
columns={[
{"title":"Menu","items":[{"label":"Coffee Drinks","href":"menu"},{"label":"Pastries","href":"menu"},{"label":"Seasonal Specials","href":"menu"}]},
{"title":"Company","items":[{"label":"About Us","href":"about"},{"label":"Our Team","href":"team"},{"label":"Contact","href":"contact"}]},
{"title":"Connect","items":[{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Email","href":"https://mailto:hello@brewhaven.com"}]}
{ "title": "Menu", "items": [{ "label": "Coffee Drinks", "href": "menu" }, { "label": "Pastries", "href": "menu" }, { "label": "Seasonal Specials", "href": "menu" }] },
{ "title": "Company", "items": [{ "label": "About Us", "href": "about" }, { "label": "Our Team", "href": "team" }, { "label": "Contact", "href": "contact" }] },
{ "title": "Connect", "items": [{ "label": "Instagram", "href": "https://instagram.com" }, { "label": "Facebook", "href": "https://facebook.com" }, { "label": "Email", "href": "https://mailto:hello@brewhaven.com" }] }
]}
/>
</div>