From 35739accba8d172d524ae4441db14211a3605518 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 10:20:51 +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 11a7a7d..a392674 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -80,6 +80,7 @@ export default function Layout() { }, ]} copyright="© 2024 Islam Tirichine. All rights reserved." + links={[]} /> From 4a7bfb75d835457a121a2c9899bc061bc0b1acda Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 14 Jun 2026 10:20:54 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 85 ++++++++++++--------------------------- 1 file changed, 26 insertions(+), 59 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a392674..23fdef3 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,81 +7,48 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Works", - "href": "#works" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { name: "Works", href: "#works" }, + { name: "About", href: "#about" }, + { name: "Contact", href: "#contact" }, + { name: "Hero", href: "#hero" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="ISLAM TIRICHINE" + ctaButton={{ + text: "Get in touch", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Islam Tirichine. All rights reserved." + links={[]} + />
);