Update src/components/Layout.tsx
This commit is contained in:
@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
|
||||
export default function Layout() {
|
||||
const navItems = [
|
||||
{
|
||||
"name": "Loja",
|
||||
"href": "#shop"
|
||||
"name": "Loja", "href": "#shop"
|
||||
},
|
||||
{
|
||||
"name": "Homem",
|
||||
"href": "#men"
|
||||
"name": "Homem", "href": "#men"
|
||||
},
|
||||
{
|
||||
"name": "Mulher",
|
||||
"href": "#women"
|
||||
"name": "Mulher", "href": "#women"
|
||||
},
|
||||
{
|
||||
"name": "Marcas",
|
||||
"href": "#brands"
|
||||
"name": "Marcas", "href": "#brands"
|
||||
},
|
||||
{
|
||||
"name": "Garage",
|
||||
"href": "#garage"
|
||||
"name": "Garage", "href": "#garage"
|
||||
},
|
||||
{
|
||||
"name": "Hero",
|
||||
"href": "#hero"
|
||||
"name": "Hero", "href": "#hero"
|
||||
},
|
||||
{
|
||||
"name": "Trust",
|
||||
"href": "#trust"
|
||||
"name": "Trust", "href": "#trust"
|
||||
}
|
||||
];
|
||||
|
||||
@@ -44,9 +37,7 @@ export default function Layout() {
|
||||
<NavbarFloating
|
||||
logo="Backdoor"
|
||||
ctaButton={{
|
||||
text: "Promoções",
|
||||
href: "#sale",
|
||||
}}
|
||||
text: "Promoções", href: "#sale"}}
|
||||
navItems={navItems} />
|
||||
</SectionErrorBoundary>
|
||||
<main className="flex-grow">
|
||||
@@ -57,46 +48,36 @@ export default function Layout() {
|
||||
brand="Backdoor Shop & Garage"
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
title: "Menu", items: [
|
||||
{
|
||||
label: "Homem",
|
||||
href: "#men",
|
||||
},
|
||||
label: "Homem", href: "#men"},
|
||||
{
|
||||
label: "Mulher",
|
||||
href: "#women",
|
||||
},
|
||||
label: "Mulher", href: "#women"},
|
||||
{
|
||||
label: "Garage",
|
||||
href: "#garage",
|
||||
},
|
||||
label: "Garage", href: "#garage"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Apoio",
|
||||
items: [
|
||||
title: "Apoio", items: [
|
||||
{
|
||||
label: "Contacto",
|
||||
href: "#",
|
||||
},
|
||||
label: "Contacto", href: "#"},
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "#",
|
||||
},
|
||||
label: "WhatsApp", href: "#"},
|
||||
{
|
||||
label: "Privacidade",
|
||||
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?_wi=2"
|
||||
links={[
|
||||
{ label: "Termos", href: "#" },
|
||||
{ label: "Privacidade", href: "#" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-young-african-man-riding-motorbike_171337-10260.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</StyleProvider>
|
||||
|
||||
Reference in New Issue
Block a user