diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index f079cf4..ed542df 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,112 +7,59 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Products", - "href": "#products" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Features", href: "#features" }, + { name: "Contact", href: "#contact" }, + { name: "Products", href: "#products" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="Meru Greenwood" + logoImageSrc="http://img.b2bpic.net/free-vector/hand-drawn-full-side-color-business-card_23-2151022832.jpg" + ctaButton={{ text: "Get Directions", href: "#contact" }} + navItems={navItems} + />
+ copyright="© 2024 Meru Greenwood Park. All rights reserved." + links={[ + { label: "Terms", href: "#" }, + { label: "Privacy", href: "#" }, + ]} + />
);