diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 06c442f..73d2a0c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,98 +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: "#"}, + ]} + />
);