From c83a78acf42a5b93d992bbe3fc39a2f3f35ef01a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 12:58:38 +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 8d215f2..5e7a323 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Tue, 16 Jun 2026 12:58:41 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 76 ++++++++++++--------------------------- 1 file changed, 22 insertions(+), 54 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 5e7a323..8d2cbe4 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": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "Products", - "href": "#products" + "name": "Products", "href": "#products" }, { - "name": "About", - "href": "#features" + "name": "About", "href": "#features" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Social Proof", - "href": "#social-proof" + "name": "Social Proof", "href": "#social-proof" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,63 +49,40 @@ export default function Layout() { brand="Alpha Textiles" columns={[ { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About Us", - href: "#features", - }, + label: "About Us", href: "#features"}, { - label: "Career", - href: "#", - }, + label: "Career", href: "#"}, { - label: "Location", - href: "#", - }, + label: "Location", href: "#"}, ], }, { - title: "Products", - items: [ + title: "Products", items: [ { - label: "Cotton", - href: "#products", - }, + label: "Cotton", href: "#products"}, { - label: "Polyester", - href: "#products", - }, + label: "Polyester", href: "#products"}, { - label: "Denim", - href: "#products", - }, + label: "Denim", href: "#products"}, ], }, { - title: "Support", - items: [ + title: "Support", items: [ { - label: "FAQs", - href: "#faq", - }, + label: "FAQs", href: "#faq"}, { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, ], }, ]} copyright="© 2024 Alpha Textiles. 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