From c46fe30306f82a464f1f13079e57ab48b5173485 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 09:20:12 +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 4aa08a3..6ed1f93 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 09:20:15 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 89 +++++++++++++++------------------------ 1 file changed, 34 insertions(+), 55 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 6ed1f93..6637738 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Hakkımızda", - "href": "#about" + "name": "Hakkımızda", "href": "#about" }, { - "name": "Hizmetler", - "href": "#services" + "name": "Hizmetler", "href": "#services" }, { - "name": "Ekibimiz", - "href": "#team" + "name": "Ekibimiz", "href": "#team" }, { - "name": "İletişim", - "href": "#contact" + "name": "İletişim", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -42,59 +35,45 @@ export default function Layout() { + logo="Dişistanbul" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=ty984a" + ctaButton={{ + text: "Randevu Al", href: "#contact"}} + navItems={navItems} />
+ ]} + /> ); -- 2.49.1