From e9a2f4517b25849b60db784749bb974ffbe70179 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 15 Jun 2026 09:47:11 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 109 +++++++++++--------------------------- 1 file changed, 32 insertions(+), 77 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index c58a9e0..491d927 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,99 +7,54 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Programs", - "href": "#features" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Reviews", - "href": "#testimonials" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { "name": "About", "href": "#about" }, + { "name": "Programs", "href": "#features" }, + { "name": "Pricing", "href": "#pricing" }, + { "name": "Reviews", "href": "#testimonials" }, + { "name": "Hero", "href": "#hero" }, + { "name": "Metrics", "href": "#metrics" }, + { "name": "Faq", "href": "#faq" } + ]; return ( + logo="Mishka" + logoImageSrc="http://img.b2bpic.net/free-vector/creative-california-bear-logo_23-2149212922.jpg" + ctaButton={{ + text: "Book Tour", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Mishka Daycare. All rights reserved." + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + ]} + />
);