From 1d1bc075155e982130236208b714a10cc8cb976e Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 12:08:56 +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 06c442f..a9ca145 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:09:00 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 114 +++++++++++++------------------------- 1 file changed, 39 insertions(+), 75 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a9ca145..73d2a0c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,99 +7,63 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Play", - "href": "#play" - }, - { - "name": "Birthdays", - "href": "#birthdays" - }, - { - "name": "Safety", - "href": "#safety" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { name: "Play", href: "#play" }, + { name: "Birthdays", href: "#birthdays" }, + { name: "Safety", href: "#safety" }, + { name: "Contact", href: "#contact" }, + { name: "Hero", href: "#hero" }, + { name: "Features", href: "#features" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="CityKids" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=1q46l0" + ctaButton={{ + text: "Book Now", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 CityKids İgraonica. All rights reserved." + links={[ + { + label: "Privacy Policy", href: "#"}, + ]} + />
);