From 5ed5b47a3711b86364e0949f017aced57a7d8d99 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 12:38:03 +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 11d6127..d180003 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -44,6 +44,7 @@ export default function Layout() { Date: Sun, 21 Jun 2026 12:38:06 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 39 ++++++++++++--------------------------- 1 file changed, 12 insertions(+), 27 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d180003..7c9358a 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": "#home" + "name": "Home", "href": "#home" }, { - "name": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Portfolio", - "href": "#portfolio" + "name": "Portfolio", "href": "#portfolio" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" } ]; @@ -44,11 +37,9 @@ export default function Layout() {
@@ -60,17 +51,11 @@ export default function Layout() { copyright="© 2024 Cozy Creative. All rights reserved." socialLinks={[ { - icon: Twitter, - href: "https://twitter.com", - }, + icon: "Twitter", href: "https://twitter.com"}, { - icon: Instagram, - href: "https://instagram.com", - }, + icon: "Instagram", href: "https://instagram.com"}, { - icon: Linkedin, - href: "https://linkedin.com", - }, + icon: "Linkedin", href: "https://linkedin.com"}, ]} /> -- 2.49.1