Update src/components/Layout.tsx

This commit is contained in:
2026-06-20 19:14:07 +00:00
parent f6f5716072
commit 561da8b7b6

View File

@@ -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 (
<StyleProvider buttonVariant="bubble" siteBackground="noise" heroBackground="cornerGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="DriveEase"
logoImageSrc="https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&q=80&w=100&h=100"
ctaButton={{
text: "Book Now",
href: "#contact",
}}
navItems={navItems} />
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}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
imageSrc="http://img.b2bpic.net/free-photo/woman-making-desicion-buy-car_1303-13859.jpg"
brand="DriveEase"
columns={[
{
title: "Company",
items: [
imageSrc="http://img.b2bpic.net/free-photo/woman-making-desicion-buy-car_1303-13859.jpg"
brand="DriveEase"
columns={[
{
label: "About",
href: "#about",
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Careers", href: "#" },
],
},
{
label: "Careers",
href: "#",
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
copyright="© 2024 DriveEase. All rights reserved."
links={[
{
label: "Home",
href: "/",
},
{
label: "Fleet",
href: "#fleet",
},
]}
/>
]}
copyright="© 2024 DriveEase. All rights reserved."
links={[
{ label: "Home", href: "/" },
{ label: "Fleet", href: "#fleet" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);
}
}