From c31ca7c8cd382d026c2100356e2a78e849fb5735 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 01:09:11 +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 b441891..2874762 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -36,6 +36,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 01:09:14 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 2874762..dd58708 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -9,24 +9,19 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" } ]; @@ -36,11 +31,9 @@ export default function Layout() {
@@ -52,13 +45,9 @@ export default function Layout() { copyright="© 2024 New Odyssey. All rights reserved." socialLinks={[ { - icon: Instagram, - href: "#", - }, + icon: "Instagram", href: "#"}, { - icon: Twitter, - href: "#", - }, + icon: "Twitter", href: "#"}, ]} /> -- 2.49.1