From 31ac579551683f56010f8805c13b974c6365026a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 12:49:19 +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 1481dee..647bd32 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 12:49:22 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 86 +++++++++++++++------------------------ 1 file changed, 33 insertions(+), 53 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 647bd32..5a0e815 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": "Anasayfa", - "href": "#hero" + "name": "Anasayfa", "href": "#hero" }, { - "name": "Hakkımızda", - "href": "#about" + "name": "Hakkımızda", "href": "#about" }, { - "name": "Menü", - "href": "#menu" + "name": "Menü", "href": "#menu" }, { - "name": "İletişim", - "href": "#contact" + "name": "İletişim", "href": "#contact" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -42,55 +35,42 @@ export default function Layout() { + logo="Faysal Usta" + logoImageSrc="http://img.b2bpic.net/free-vector/fast-food-insignias_23-2147517290.jpg" + ctaButton={{ + text: "Rezervasyon", href: "#contact"}} + navItems={navItems} + />
+ ]} + /> ); -- 2.49.1