diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 23873eb..3550678 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,120 +7,63 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Collections", - "href": "#trending" - }, - { - "name": "Style Guide", - "href": "#features" - }, - { - "name": "Reviews", - "href": "#testimonials" - }, - { - "name": "FAQ", - "href": "#faq" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "About Split", - "href": "#about-split" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { name: "Collections", href: "#trending" }, + { name: "Style Guide", href: "#features" }, + { name: "Reviews", href: "#testimonials" }, + { name: "FAQ", href: "#faq" }, + { name: "Hero", href: "#hero" }, + { name: "About Split", href: "#about-split" }, + { name: "Metrics", href: "#metrics" } + ]; return ( + logo="Tops Szn" + logoImageSrc="http://img.b2bpic.net/free-vector/illustration-boutique-shop-logo-stamp-banner_53876-6848.jpg" + ctaButton={{ + text: "Shop Now", href: "#hero"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Tops Szn. All rights reserved." + links={[ + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" }, + ]} + />
);