diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e0610b1..1b83011 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,97 +7,55 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Features", - "href": "#about" - }, - { - "name": "Fleet", - "href": "#fleet" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "FAQ", - "href": "#faq" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { name: "Features", href: "#about" }, + { name: "Fleet", href: "#fleet" }, + { name: "Pricing", href: "#pricing" }, + { name: "FAQ", href: "#faq" }, + { name: "Hero", href: "#hero" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="DriveEase" + logoImageSrc="http://img.b2bpic.net/free-vector/car-rental-25-versatile-vector-designs-all-your-rental-needs_1142-22319.jpg" + ctaButton={{ + text: "Book Now", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 DriveEase. All rights reserved." + links={[ + { label: "Home", href: "/" }, + { label: "Fleet", href: "#fleet" }, + ]} + />
); -} +} \ No newline at end of file