From dee49fb983b872b9288b14475a0e8a8861c819d9 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 11:53:45 +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 f5f0ec0..c99fc3c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 11:53:48 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 53 ++++++++++++--------------------------- 1 file changed, 16 insertions(+), 37 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index c99fc3c..0eb84ec 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": "Home", - "href": "/" + "name": "Home", "href": "/" }, { - "name": "Menu", - "href": "/menu" + "name": "Menu", "href": "/menu" }, { - "name": "Asporto", - "href": "/ordine" + "name": "Asporto", "href": "/ordine" }, { - "name": "Contatti", - "href": "/contatti" + "name": "Contatti", "href": "/contatti" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,38 +49,26 @@ export default function Layout() { brand="SHiNy Sushi" columns={[ { - title: "Contatti", - items: [ + title: "Contatti", items: [ { - label: "Via Giacinto Gallina 17, 20129 Milano", - href: "#", - }, + label: "Via Giacinto Gallina 17, 20129 Milano", href: "#"}, { - label: "+39 02 7010 7524", - href: "tel:+390270107524", - }, + label: "+39 02 7010 7524", href: "tel:+390270107524"}, ], }, { - title: "Orari", - items: [ + title: "Orari", items: [ { - label: "Lun-Dom: 12:00-15:00 / 19:00-23:30", - href: "#", - }, + label: "Lun-Dom: 12:00-15:00 / 19:00-23:30", href: "#"}, ], }, ]} copyright="© 2024 SHiNy Sushi. Tutti i diritti riservati." links={[ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Instagram", - href: "https://instagram.com", - }, + label: "Instagram", href: "https://instagram.com"}, ]} /> -- 2.49.1