From 06f3c0c8a92fd116c14fe031c7fa52eedb918a44 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 16:15:54 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 6a0e66e..e5e10a8 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -98,6 +98,10 @@ export default function Layout() { ]} copyright="© 2024 Go Coffee Matinhos. Todos os direitos reservados." imageSrc="http://img.b2bpic.net/free-photo/iced-chocolate_1339-4412.jpg?_wi=2" + links={[ + { label: "Termos de Uso", href: "#" }, + { label: "Política de Privacidade", href: "#" } + ]} /> -- 2.49.1 From c852cd93c21fb56ddd777caa8dee12e9596e07c7 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 13 Jun 2026 16:15:58 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 65 +++++++++++++-------------------------- 1 file changed, 21 insertions(+), 44 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e5e10a8..3c97b57 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": "#sobre" + "name": "Sobre", "href": "#sobre" }, { - "name": "Cardápio", - "href": "#cardapio" + "name": "Cardápio", "href": "#cardapio" }, { - "name": "Avaliações", - "href": "#avaliacoes" + "name": "Avaliações", "href": "#avaliacoes" }, { - "name": "Dif", - "href": "#dif" + "name": "Dif", "href": "#dif" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" }, { - "name": "Contato", - "href": "#contato" + "name": "Contato", "href": "#contato" } ]; @@ -44,9 +37,7 @@ export default function Layout() {
@@ -57,50 +48,36 @@ export default function Layout() { brand="GO COFFEE MATINHOS" columns={[ { - title: "Endereço", - items: [ + title: "Endereço", items: [ { - label: "Rua Prefeito Dr. Roque Vernalha, 115", - href: "#", - }, + label: "Rua Prefeito Dr. Roque Vernalha, 115", href: "#"}, { - label: "Centro – Matinhos/PR", - href: "#", - }, + label: "Centro – Matinhos/PR", href: "#"}, ], }, { - title: "Social", - items: [ + title: "Social", items: [ { - label: "Instagram", - href: "https://instagram.com", - }, + label: "Instagram", href: "https://instagram.com"}, { - label: "Google Avaliações", - href: "#", - }, + label: "Google Avaliações", href: "#"}, ], }, { - title: "Contato", - items: [ + title: "Contato", items: [ { - label: "(41) 99510-9101", - href: "tel:+5541995109101", - }, + label: "(41) 99510-9101", href: "tel:+5541995109101"}, { - label: "WhatsApp", - href: "https://wa.me/5541995109101", - }, + label: "WhatsApp", href: "https://wa.me/5541995109101"}, ], }, ]} copyright="© 2024 Go Coffee Matinhos. Todos os direitos reservados." - imageSrc="http://img.b2bpic.net/free-photo/iced-chocolate_1339-4412.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/iced-chocolate_1339-4412.jpg" links={[ - { label: "Termos de Uso", href: "#" }, - { label: "Política de Privacidade", href: "#" } + { + label: "Privacidade", href: "#" + } ]} /> -- 2.49.1