From 3bfc62be160cb00fcaa6fbdb3eec92daeba296ce Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 15:50:37 +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 59a3c8a..e077f54 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -44,6 +44,7 @@ export default function Layout() { Date: Tue, 16 Jun 2026 15:50:41 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 35 +++++++++++------------------------ 1 file changed, 11 insertions(+), 24 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e077f54..7d1e80c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Services", - "href": "#features" + "name": "Services", "href": "#features" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -44,11 +37,9 @@ export default function Layout() {
@@ -60,13 +51,9 @@ export default function Layout() { copyright="© 2024 Matsudo Myongdon All Rights Reserved." socialLinks={[ { - icon: Twitter, - href: "#", - }, + icon: "Twitter", href: "#"}, { - icon: Instagram, - href: "#", - }, + icon: "Instagram", href: "#"}, ]} /> -- 2.49.1