Merge version_1_1782145879627 into main #1

Merged
bender merged 2 commits from version_1_1782145879627 into main 2026-06-22 16:32:28 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Shop",
"href": "#shop"
"name": "Shop", "href": "#shop"
},
{
"name": "Fishing Report",
"href": "#report"
"name": "Fishing Report", "href": "#report"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Arrivals",
"href": "#arrivals"
"name": "Arrivals", "href": "#arrivals"
},
{
"name": "Brands",
"href": "#brands"
"name": "Brands", "href": "#brands"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Matos Marine"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=b4ric6"
ctaButton={{
text: "WhatsApp Us",
href: "https://wa.me/17870000000",
}}
text: "WhatsApp Us", href: "https://wa.me/17870000000"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,42 +49,28 @@ export default function Layout() {
brand="Matos Marine"
columns={[
{
title: "Store",
items: [
title: "Store", items: [
{
label: "About Us",
href: "#",
},
label: "About Us", href: "#"},
{
label: "Location",
href: "#",
},
label: "Location", href: "#"},
],
},
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "Browse",
href: "#shop",
},
label: "Browse", href: "#shop"},
{
label: "Pickup Info",
href: "#pickup",
},
label: "Pickup Info", href: "#pickup"},
],
},
]}
copyright="© 2024 Matos Marine Tackle Shop. All rights reserved."
links={[
{
label: "Terms",
href: "#",
},
label: "Terms", href: "#"},
{
label: "Privacy",
href: "#",
},
label: "Privacy", href: "#"},
]}
/>
</SectionErrorBoundary>