Files
2f129d0b-8bd3-414a-978e-018…/src/components/Layout.tsx
2026-06-15 01:03:57 +00:00

103 lines
2.2 KiB
TypeScript

import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia';
import NavbarCentered from '@/components/ui/NavbarCentered';
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": "Menu",
"href": "#products"
},
{
"name": "Reviews",
"href": "#testimonials"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
}
];
return (
<StyleProvider buttonVariant="arrow" siteBackground="floatingGradient" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarCentered
logo="911"
ctaButton={{
text: "Order Now",
href: "#contact",
}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="911 Fast Food"
columns={[
{
title: "Support",
items: [
{
label: "FAQ",
href: "#faq",
},
{
label: "Contact",
href: "#contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
]}
copyright="© 2024 911 Fast Food. All rights reserved."
links={[
{
label: "Instagram",
href: "#",
},
{
label: "Twitter",
href: "#",
},
]}
imageSrc="http://img.b2bpic.net/free-vector/colorful-pack-vintage-restaurant-logos_23-2147652478.jpg"
/>
</SectionErrorBoundary>
</StyleProvider>
);
}