Files
3a314361-4156-447d-8380-e94…/src/components/Layout.tsx
2026-06-13 20:41:09 +00:00

105 lines
2.3 KiB
TypeScript

import FooterBasic from '@/components/sections/footer/FooterBasic';
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": "Products",
"href": "#products"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
}
];
return (
<StyleProvider buttonVariant="magnetic" siteBackground="noise" heroBackground="cornerGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarCentered
logo="PURE EELARA"
ctaButton={{
text: "Trade With Us",
href: "#contact",
}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "#about",
},
{
label: "Sourcing",
href: "#features",
},
],
},
{
title: "Products",
items: [
{
label: "Cardamom",
href: "#products",
},
{
label: "All Spices",
href: "#products",
},
],
},
{
title: "Contact",
items: [
{
label: "WhatsApp",
href: "https://wa.me/910000000000",
},
{
label: "Email",
href: "mailto:trade@pureeelara.com",
},
],
},
]}
leftText="© 2024 Pure Eelara. All rights reserved."
rightText="Expanding from India to the UAE."
/>
</SectionErrorBoundary>
</StyleProvider>
);
}