Merge version_1_1781515750776 into main #1

Merged
bender merged 2 commits from version_1_1781515750776 into main 2026-06-15 09:30:15 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Shop",
"href": "#products"
"name": "Shop", "href": "#products"
},
{
"name": "The Garage",
"href": "#garage"
"name": "The Garage", "href": "#garage"
},
{
"name": "Community",
"href": "#community"
"name": "Community", "href": "#community"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Manifesto",
"href": "#manifesto"
"name": "Manifesto", "href": "#manifesto"
},
{
"name": "Categories",
"href": "#categories"
"name": "Categories", "href": "#categories"
},
{
"name": "Social",
"href": "#social"
"name": "Social", "href": "#social"
}
];
@@ -42,63 +35,46 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Backdoor Shop & Garage"
ctaButton={{
text: "Visit Store",
href: "#garage",
}}
navItems={navItems} />
logo="Backdoor Shop & Garage"
logoImageSrc="http://img.b2bpic.net/free-vector/retro-color-skateboarding-labels-logos-stickers-set-emblem-badge-print-extreme-urban-vector-illustration_1284-46314.jpg"
ctaButton={{
text: "Visit Store", href: "#garage"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Backdoor Shop & Garage"
columns={[
{
title: "Navigation",
items: [
brand="Backdoor Shop & Garage"
columns={[
{
label: "Shop",
href: "#products",
title: "Navigation", items: [
{
label: "Shop", href: "#products"},
{
label: "The Garage", href: "#garage"},
{
label: "Community", href: "#community"},
],
},
{
label: "The Garage",
href: "#garage",
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
]}
copyright="© 2024 Backdoor Shop. All rights reserved."
links={[
{
label: "Community",
href: "#community",
},
],
},
{
title: "Legal",
items: [
label: "Instagram", href: "#"},
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
copyright="© 2024 Backdoor Shop. All rights reserved."
links={[
{
label: "Instagram",
href: "#",
},
{
label: "Google Maps",
href: "#",
},
]}
/>
label: "Google Maps", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);