Files
04d7a792-55f4-4ebb-80bc-e60…/src/components/Layout.tsx

103 lines
2.3 KiB
TypeScript

import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia';
import NavbarInline from '@/components/ui/NavbarInline';
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": "About",
"href": "#about"
},
{
"name": "Classes",
"href": "#classes"
},
{
"name": "Pricing",
"href": "#pricing"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
}
];
return (
<StyleProvider buttonVariant="stagger" siteBackground="noise" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarInline
logo="Turtle Dove"
ctaButton={{
text: "Join Today",
href: "#contact",
}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Turtle Dove Fitness"
columns={[
{
title: "Info",
items: [
{
label: "About Us",
href: "#about",
},
{
label: "Classes",
href: "#classes",
},
],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "mailto:info@turtledovefitness.co.ke",
},
{
label: "FAQ",
href: "#faq",
},
],
},
]}
copyright="© 2024 Turtle Dove Fitness Center. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/man-working-with-laptop-cafe-wooden-table_1321-799.jpg?_wi=2"
/>
</SectionErrorBoundary>
</StyleProvider>
);
}