Merge version_1_1781942723223 into main #1
@@ -7,95 +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"
|
||||
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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user