Merge version_1_1782096826884 into main

Merge version_1_1782096826884 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-06-22 02:54:51 +00:00

View File

@@ -7,96 +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 (
<StyleProvider buttonVariant="elastic" siteBackground="gridDots" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloating
logo="Fennel's Fleet"
ctaButton={{
text: "Get Started",
href: "#contact",
}}
navItems={navItems} />
logo="Fennel's Fleet"
ctaButton={{
text: "Get Started", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Fennel's Fleet Management Solutions Ltd."
columns={[
{
title: "Company",
items: [
brand="Fennel's Fleet Management Solutions Ltd."
columns={[
{
label: "About Us",
href: "#",
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Careers", href: "#" },
],
},
{
label: "Careers",
href: "#",
title: "Support", items: [
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "#faq" },
],
},
],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "#contact",
},
{
label: "FAQ",
href: "#faq",
},
],
},
]}
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"
imageAlt="Medium shot woman working as driver"
/>
]}
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"
/>
</SectionErrorBoundary>
</StyleProvider>
);