Files
7d93c5dc-e0db-4004-8ee1-565…/src/components/Layout.tsx
2026-06-14 17:48:01 +00:00

97 lines
2.2 KiB
TypeScript

import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia';
import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot";
import { Outlet } from 'react-router-dom';
import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Flowers",
"href": "#collections"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
}
];
return (
<StyleProvider buttonVariant="magnetic" siteBackground="noise" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Ford Flowers"
ctaButton={{
text: "Order Now",
href: "#contact",
}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Ford Flowers"
columns={[
{
title: "Visit Us",
items: [
{
label: "123 Maple St, Zanesville, OH",
},
{
label: "Open Mon-Sat, 9am-6pm",
},
],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "#contact",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
copyright="© 2024 Ford Flowers. All rights reserved."
imageSrc="http://img.b2bpic.net/free-vector/nature-foliage-wallpaper_53876-89222.jpg"
links={[
{
label: "Privacy Policy",
href: "#",
},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);
}