From e07937fb1d4fb25a4053f45ff42ec9fd4eb75dc6 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 13:49:33 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3a03605..24774bb 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -104,7 +104,6 @@ export default function Layout() { }, ]} imageSrc="http://img.b2bpic.net/free-photo/middle-aged-man-his-instrument-workshop_23-2149018604.jpg" - imageAlt="Middle aged man in his instrument workshop" /> -- 2.49.1 From 61031c4f3bd2d4703a87c271f7ed68ae27111e03 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 14 Jun 2026 13:49:36 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 64 ++++++++++----------------------------- 1 file changed, 16 insertions(+), 48 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 24774bb..b076f18 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,19 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "/" + "name": "Home", "href": "/" }, { - "name": "Academic Guitars", - "href": "/academic" + "name": "Academic Guitars", "href": "/academic" }, { - "name": "Signature Guitars", - "href": "/signature" + "name": "Signature Guitars", "href": "/signature" }, { - "name": "About", - "href": "/about" + "name": "About", "href": "/about" }, { - "name": "Hero", - "href": "#hero" - }, - { - "name": "About Section", - "href": "#about-section" - }, - { - "name": "Features Glow", - "href": "#features-glow" + "name": "Contact", "href": "/contact" } ]; @@ -44,9 +31,7 @@ export default function Layout() {
@@ -57,51 +42,34 @@ export default function Layout() { brand="Alfredo González" columns={[ { - title: "Shop", - items: [ + title: "Shop", items: [ { - label: "Academic Guitars", - href: "/academic", - }, + label: "Academic Guitars", href: "/academic"}, { - label: "Signature Guitars", - href: "/signature", - }, + label: "Signature Guitars", href: "/signature"}, ], }, { - title: "Workshop", - items: [ + title: "Workshop", items: [ { - label: "About Us", - href: "/about", - }, + label: "About Us", href: "/about"}, { - label: "Contact", - href: "/contact", - }, + label: "Contact", href: "/contact"}, ], }, { - title: "Support", - items: [ + title: "Support", items: [ { - label: "FAQ", - href: "/home#faq", - }, + label: "FAQ", href: "/"}, { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, ], }, ]} copyright="© 2024 Alfredo González. All rights reserved." links={[ { - label: "WhatsApp 054-9200480", - href: "https://wa.me/972549200480", - }, + label: "WhatsApp 054-9200480", href: "https://wa.me/972549200480"}, ]} imageSrc="http://img.b2bpic.net/free-photo/middle-aged-man-his-instrument-workshop_23-2149018604.jpg" /> -- 2.49.1