Merge version_1_1782242170474 into main #1

Merged
bender merged 1 commits from version_1_1782242170474 into main 2026-06-23 19:17:11 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "Products",
"href": "#products"
"name": "Products", "href": "#products"
},
{
"name": "Performance",
"href": "#metrics"
"name": "Performance", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
}
];
@@ -42,60 +35,46 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Swimbait Supply"
ctaButton={{
text: "Shop Now",
href: "/shop",
}}
navItems={navItems} />
logo="Swimbait Supply"
logoImageSrc="http://img.b2bpic.net/free-photo/vintage-collage-person-doing-kayaking-road_23-2149438109.jpg"
ctaButton={{
text: "Shop Now", href: "/shop"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Swimbait Supply"
columns={[
{
title: "Shop",
items: [
brand="Swimbait Supply"
columns={[
{
label: "New Arrivals",
href: "#",
title: "Shop", items: [
{
label: "New Arrivals", href: "#"},
{
label: "Best Sellers", href: "#"},
],
},
{
label: "Best Sellers",
href: "#",
title: "Company", items: [
{
label: "About Us", href: "#"},
{
label: "Contact", href: "#"},
],
},
],
},
{
title: "Company",
items: [
]}
copyright="© 2024 Swimbait Supply. All rights reserved."
links={[
{
label: "About Us",
href: "#",
},
label: "Privacy", href: "#"},
{
label: "Contact",
href: "#",
},
],
},
]}
copyright="© 2024 Swimbait Supply. All rights reserved."
links={[
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/vintage-collage-person-doing-kayaking-road_23-2149438109.jpg"
/>
label: "Terms", href: "#"},
]}
imageSrc="http://img.b2bpic.net/free-photo/vintage-collage-person-doing-kayaking-road_23-2149438109.jpg"
/>
</SectionErrorBoundary>
</StyleProvider>
);