diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 27c8a1f..dfa93a3 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -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 ( + 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} + />
+ ]} + copyright="© 2025 MODULAR Handbags. All rights reserved." + links={[ + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" }, + ]} + />
); -} +} \ No newline at end of file