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: "#" }, + ]} + />
);