diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 8ed6425..fa1fa22 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,95 +7,38 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Scents", - "href": "#products" - }, - { - "name": "Markets", - "href": "#markets" - }, - { - "name": "Order", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { name: "About", href: "#about" }, + { name: "Scents", href: "#products" }, + { name: "Markets", href: "#markets" }, + { name: "Order", href: "#contact" } + ]; return ( + logo="Sammy Scent" + logoImageSrc="http://img.b2bpic.net/free-photo/candle-extinguished-with-smoke-trail_24972-3063.jpg" + ctaButton={{ + text: "DM on Instagram", href: "https://instagram.com/sammy_scent_creations" + }} + navItems={navItems} + />
+ brand="Sammy Scent Creations" + columns={[ + { title: "Shop", items: [{ label: "Scents", href: "#products" }, { label: "About", href: "#about" }] }, + { title: "Connect", items: [{ label: "Instagram", href: "https://instagram.com/sammy_scent_creations" }, { label: "Markets", href: "#markets" }] } + ]} + copyright="© 2024 Sammy Scent Creations. All rights reserved." + links={[{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }]} + />
);