From fda0c800b54ee83c2b2a2ff9baadc6a12576e4b0 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 14:02:57 +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 dde3f8c..00a627d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 17 Jun 2026 14:03:00 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 129 +++++++++++--------------------------- 1 file changed, 37 insertions(+), 92 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 00a627d..b307323 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,116 +7,61 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Experience", - "href": "#experience" - }, - { - "name": "Services", - "href": "#services" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { "name": "About", "href": "#about" }, + { "name": "Experience", "href": "#experience" }, + { "name": "Services", "href": "#services" }, + { "name": "Contact", "href": "#contact" }, + { "name": "Hero", "href": "#hero" }, + { "name": "Metrics", "href": "#metrics" }, + { "name": "Testimonials", "href": "#testimonials" } + ]; return ( + logo="Portfolio" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=o6wl2q" + ctaButton={{ + text: "Hire Me", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Professional Portfolio. All rights reserved." + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + ]} + />
); -- 2.49.1