From 3e34b520db97cf2725500de3c70af3dc2f56e873 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 09:50:39 +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 21b6315..d8fc438 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -39,6 +39,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 09:50:42 +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 d8fc438..135b598 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": "Work", - "href": "#work" + "name": "Work", "href": "#work" }, { - "name": "Skills", - "href": "#skills" + "name": "Skills", "href": "#skills" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Identity", - "href": "#identity" + "name": "Identity", "href": "#identity" }, { - "name": "Social", - "href": "#social" + "name": "Social", "href": "#social" } ]; @@ -39,11 +33,9 @@ export default function Layout() {
@@ -54,34 +46,24 @@ export default function Layout() { brand="Gayathri" columns={[ { - title: "Social", - items: [ + title: "Social", items: [ { - label: "Instagram", - href: "#", - }, + label: "Instagram", href: "#"}, { - label: "LinkedIn", - href: "#", - }, + label: "LinkedIn", href: "#"}, ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { - label: "Email", - href: "mailto:hello@example.com", - }, + label: "Email", href: "mailto:hello@example.com"}, ], }, ]} copyright="© 2024 Gayathri. All rights reserved." links={[ { - label: "Privacy", - href: "#", - }, + label: "Privacy", href: "#"}, ]} /> -- 2.49.1