Update src/components/Layout.tsx

This commit is contained in:
2026-06-20 08:06:24 +00:00
parent fbd3451cd2
commit 37f59adf86

View File

@@ -7,96 +7,54 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "The Concept",
"href": "#about"
},
{
"name": "Shop Panels",
"href": "#products"
},
{
"name": "How it works",
"href": "#features"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Pricing",
"href": "#pricing"
},
{
"name": "Faq",
"href": "#faq"
}
];
{ name: "The Concept", href: "#about" },
{ name: "Shop Panels", href: "#products" },
{ name: "How it works", href: "#features" },
{ name: "Testimonials", href: "#testimonials" },
{ name: "Hero", href: "#hero" },
{ name: "Pricing", href: "#pricing" },
{ name: "Faq", href: "#faq" }
];
return (
<StyleProvider buttonVariant="shift" siteBackground="noise" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="MODULAR"
logoImageSrc="https://images.unsplash.com/photo-1599305445671-ac291c95aaa9?w=200&h=200&fit=crop"
ctaButton={{
text: "Build Your Bag",
href: "#contact",
}}
navItems={navItems} />
logo="MODULAR"
logoImageSrc="http://img.b2bpic.net/free-vector/hand-drawn-elegant-tropical-travel-agency-logo-template_742173-18812.jpg"
ctaButton={{
text: "Build Your Bag", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="MODULAR"
columns={[
{
title: "Shop",
items: [
brand="MODULAR"
columns={[
{
label: "Panels",
href: "#",
title: "Shop", items: [
{ label: "Panels", href: "#" },
{ label: "Starter Kits", href: "#" },
],
},
{
label: "Starter Kits",
href: "#",
title: "Company", items: [
{ label: "Our Story", href: "#" },
{ label: "Careers", href: "#" },
],
},
],
},
{
title: "Company",
items: [
{
label: "Our Story",
href: "#",
},
{
label: "Careers",
href: "#",
},
],
},
]}
copyright="© 2025 MODULAR Handbags. All rights reserved."
links={[
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
]}
/>
]}
copyright="© 2025 MODULAR Handbags. All rights reserved."
links={[
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);
}
}