From dbfed321ad5fb7853ec160ad5b75795bb2456726 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 00:58:43 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 23873eb..618c0cb 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 00:58:47 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 136 +++++++++++--------------------------- 1 file changed, 39 insertions(+), 97 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 618c0cb..3550678 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,121 +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: "#" }, + ]} + />
); -- 2.49.1