Files
184f2fd9-8318-4b0e-a124-b32…/src/components/Layout.tsx

115 lines
2.6 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": "Home",
"href": "#hero"
},
{
"name": "Programs",
"href": "#programs"
},
{
"name": "Membership",
"href": "#pricing"
},
{
"name": "Team",
"href": "#team"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Gallery",
"href": "#gallery"
}
];
return (
<StyleProvider buttonVariant="default" siteBackground="gridDots" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarInline
logo="PURE MUSCLE"
ctaButton={{
text: "Join Now",
href: "#contact",
}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="PURE MUSCLE N FITNESS GYM"
columns={[
{
title: "Location",
items: [
{
label: "1st Floor, MCB Building, MDA Road, Tariqabad, Multan",
},
],
},
{
title: "Contact",
items: [
{
label: "0311 6782010",
href: "tel:03116782010",
},
{
label: "WhatsApp Support",
href: "https://wa.me/923116782010",
},
],
},
{
title: "Quick Links",
items: [
{
label: "Memberships",
href: "#pricing",
},
{
label: "Programs",
href: "#programs",
},
{
label: "Careers",
href: "#",
},
],
},
]}
copyright="© 2024 Pure Muscle N Fitness Multan. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/fit-woman-performing-static-handstand_1385-2910.jpg?_wi=2"
/>
</SectionErrorBoundary>
</StyleProvider>
);
}