From 017c6bea596de87d4aa315016a33fcf898284212 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 14:32:28 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 6d258b8..8535e80 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -84,6 +84,7 @@ export default function Layout() { }, ]} copyright="© 2024 Heloisa Nails Salon. Todos os direitos reservados." + links={[]} /> -- 2.49.1 From ba51d96c94341d2eb51721e5794950acc59fc412 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 15 Jun 2026 14:32:31 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 47 ++++++++++++--------------------------- 1 file changed, 14 insertions(+), 33 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 8535e80..077d9b5 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Início", - "href": "#hero" + "name": "Início", "href": "#hero" }, { - "name": "Sobre", - "href": "#about" + "name": "Sobre", "href": "#about" }, { - "name": "Serviços", - "href": "#services" + "name": "Serviços", "href": "#services" }, { - "name": "Preços", - "href": "#pricing" + "name": "Preços", "href": "#pricing" }, { - "name": "Contacto", - "href": "#contact" + "name": "Contacto", "href": "#contact" }, { - "name": "Gallery", - "href": "#gallery" + "name": "Gallery", "href": "#gallery" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" } ]; @@ -44,9 +37,7 @@ export default function Layout() {
@@ -57,29 +48,19 @@ export default function Layout() { brand="Heloisa Nails Salon" columns={[ { - title: "Serviços", - items: [ + title: "Serviços", items: [ { - label: "Unhas de Gel", - href: "#services", - }, + label: "Unhas de Gel", href: "#services"}, { - label: "Manicure", - href: "#services", - }, + label: "Manicure", href: "#services"}, ], }, { - title: "Informações", - items: [ + title: "Informações", items: [ { - label: "Localização", - href: "https://maps.app.goo.gl/b1WoPPmPk8GqNVJF7", - }, + label: "Localização", href: "https://maps.app.goo.gl/b1WoPPmPk8GqNVJF7"}, { - label: "Facebook", - href: "https://www.facebook.com/HeloisaNails/", - }, + label: "Facebook", href: "https://www.facebook.com/HeloisaNails/"}, ], }, ]} -- 2.49.1