From c299ac6088359541893c121ed2930b45db8973e8 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 20 Jun 2026 19:58:47 +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 c7db3d4..4de325c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -39,6 +39,7 @@ export default function Layout() { Date: Sat, 20 Jun 2026 19:58:50 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 46 ++++++++++++--------------------------- 1 file changed, 14 insertions(+), 32 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 4de325c..5f60fef 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,28 +8,22 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Skills", - "href": "#skills" + "name": "Skills", "href": "#skills" }, { - "name": "Experience", - "href": "#experience" + "name": "Experience", "href": "#experience" }, { - "name": "Portfolio", - "href": "#portfolio" + "name": "Portfolio", "href": "#portfolio" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" } ]; @@ -39,11 +33,9 @@ export default function Layout() {
@@ -54,34 +46,24 @@ export default function Layout() { brand="Security Analyst Portfolio" columns={[ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { - label: "About", - href: "#about", - }, + label: "About", href: "#about"}, { - label: "Skills", - href: "#skills", - }, + label: "Skills", href: "#skills"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, ], }, ]} copyright="© 2024 Security Portfolio. All rights reserved." links={[ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, ]} /> -- 2.49.1