From c50c78876fe768bc5454544bc8a69a70b048bf91 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 22 Jun 2026 02:54:48 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 104 ++++++++++++-------------------------- 1 file changed, 31 insertions(+), 73 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index f8252e4..fb56796 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,95 +7,53 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Services", - "href": "#services" - }, - { - "name": "Why Choose Us", - "href": "#why-choose-us" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { name: "Services", href: "#services" }, + { name: "Why Choose Us", href: "#why-choose-us" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "Contact", href: "#contact" }, + { name: "Hero", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Faq", href: "#faq" } + ]; return ( + logo="Fennel's Fleet" + ctaButton={{ + text: "Get Started", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Fennel's Fleet. All rights reserved." + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + ]} + imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-working-as-driver_23-2149908147.jpg" + />
);