From 7afc88161e0510e04e2afdc3d2c1ead1e0dcbdf9 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 10:53:18 +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 a16663b..b8609a9 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 10:53:22 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 80 +++++++++++---------------------------- 1 file changed, 23 insertions(+), 57 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index b8609a9..6a19413 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "#" + "name": "Home", "href": "#" }, { - "name": "Shop", - "href": "#products" + "name": "Shop", "href": "#products" }, { - "name": "New Arrivals", - "href": "#features" + "name": "New Arrivals", "href": "#features" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Team", - "href": "#team" + "name": "Team", "href": "#team" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,67 +49,42 @@ export default function Layout() { brand="Miss Rose Official" columns={[ { - title: "Products", - items: [ + title: "Products", items: [ { - label: "Foundations", - href: "#", - }, + label: "Foundations", href: "#"}, { - label: "Lipsticks", - href: "#", - }, + label: "Lipsticks", href: "#"}, { - label: "Mascaras", - href: "#", - }, + label: "Mascaras", href: "#"}, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About Us", - href: "#", - }, + label: "About Us", href: "#"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, { - label: "Stores", - href: "#", - }, + label: "Stores", href: "#"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Refund Policy", - href: "#", - }, + label: "Refund Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]} copyright="© 2026, Miss Rose. All rights reserved." links={[ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ]} /> -- 2.49.1