Merge version_1_1781516277907 into main #3

Merged
bender merged 1 commits from version_1_1781516277907 into main 2026-06-15 09:39:41 +00:00

View File

@@ -7,78 +7,55 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Loja", "href": "#shop"
},
{
"name": "Homem", "href": "#men"
},
{
"name": "Mulher", "href": "#women"
},
{
"name": "Marcas", "href": "#brands"
},
{
"name": "Garage", "href": "#garage"
},
{
"name": "Hero", "href": "#hero"
},
{
"name": "Trust", "href": "#trust"
}
];
{ "name": "Loja", "href": "#shop" },
{ "name": "Homem", "href": "#men" },
{ "name": "Mulher", "href": "#women" },
{ "name": "Marcas", "href": "#brands" },
{ "name": "Garage", "href": "#garage" },
{ "name": "Hero", "href": "#hero" },
{ "name": "Trust", "href": "#trust" }
];
return (
<StyleProvider buttonVariant="magnetic" siteBackground="noise" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloating
logo="Backdoor"
ctaButton={{
text: "Promoções", href: "#sale"}}
navItems={navItems} />
logo="Backdoor"
ctaButton={{ text: "Promoções", href: "#sale" }}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Backdoor Shop & Garage"
columns={[
{
title: "Menu", items: [
brand="Backdoor Shop & Garage"
columns={[
{
label: "Homem", href: "#men"},
title: "Menu", items: [
{ label: "Homem", href: "#men" },
{ label: "Mulher", href: "#women" },
{ label: "Garage", href: "#garage" }
]
},
{
label: "Mulher", href: "#women"},
{
label: "Garage", href: "#garage"},
],
},
{
title: "Apoio", items: [
{
label: "Contacto", href: "#"},
{
label: "WhatsApp", href: "#"},
{
label: "Privacidade", href: "#"},
],
},
],
links={[
{
label: "Contacto", href: "#"},
{
label: "WhatsApp", href: "#"},
{
label: "Privacidade", href: "#"},
]}
copyright="© 2026 Backdoor Espinho — Todos os direitos reservados"
imageSrc="http://img.b2bpic.net/free-photo/portrait-young-african-man-riding-motorbike_171337-10260.jpg"
/>
title: "Apoio", items: [
{ label: "Contacto", href: "#" },
{ label: "WhatsApp", href: "#" },
{ label: "Privacidade", href: "#" }
]
}
]}
links={[
{ label: "Contacto", href: "#" },
{ label: "WhatsApp", href: "#" },
{ label: "Privacidade", href: "#" }
]}
copyright="© 2026 Backdoor Espinho — Todos os direitos reservados"
imageSrc="http://img.b2bpic.net/free-photo/portrait-young-african-man-riding-motorbike_171337-10260.jpg"
/>
</SectionErrorBoundary>
</StyleProvider>
);