From 961674adc90a5cf59d114fb45351c536ffeb73c0 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 16:58:26 +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 710274a..0c0aacd 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 21 Jun 2026 16:58:29 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 65 ++++++++++++--------------------------- 1 file changed, 19 insertions(+), 46 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 0c0aacd..ce4fe2a 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": "Collections", - "href": "#products" + "name": "Collections", "href": "#products" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Social Proof", - "href": "#social-proof" + "name": "Social Proof", "href": "#social-proof" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,50 +49,32 @@ export default function Layout() { brand="LuxeMakeup" columns={[ { - title: "Shop", - items: [ + title: "Shop", items: [ { - label: "Lipstick", - href: "#products", - }, + label: "Lipstick", href: "#products"}, { - label: "Eyeshadow", - href: "#products", - }, + label: "Eyeshadow", href: "#products"}, { - label: "Foundation", - href: "#products", - }, + label: "Foundation", href: "#products"}, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { - label: "Our Story", - href: "#about", - }, + label: "Our Story", href: "#about"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, { - label: "Sustainability", - href: "#", - }, + label: "Sustainability", href: "#"}, ], }, ]} copyright="© 2024 LuxeMakeup. 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