From 06bcd1b24f0a5e9919f7617384ae936ce3c68510 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 23:57:56 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 769054e..4ea4ef4 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -88,6 +88,10 @@ export default function Layout() { }, ]} copyright="© 2024 ELAMIN LEGAL. All rights reserved." + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } + ]} /> -- 2.49.1 From fbef09e91669101e5b4b617b6fb4af6037a22862 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 13 Jun 2026 23:57:59 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 56 +++++++++++---------------------------- 1 file changed, 16 insertions(+), 40 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 4ea4ef4..eea9826 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": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "FAQ", - "href": "#faq" + "name": "FAQ", "href": "#faq" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" } ]; @@ -44,9 +37,7 @@ export default function Layout() {
@@ -57,41 +48,26 @@ export default function Layout() { brand="ELAMIN LEGAL" columns={[ { - title: "Consultancy", - items: [ + title: "Consultancy", items: [ { - label: "Corporate Services", - href: "#services", - }, + label: "Corporate Services", href: "#services"}, { - label: "Legal Advice", - href: "#services", - }, + label: "Legal Advice", href: "#services"}, { - label: "Compliance", - href: "#services", - }, + label: "Compliance", href: "#services"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]} copyright="© 2024 ELAMIN LEGAL. All rights reserved." - links={[ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" } - ]} + links={[]} /> -- 2.49.1