From 42f2a7ef21b62fe3fc684e11c4dab96bf811ac91 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 28 Jun 2026 11:06:31 +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 1e23081..b03ae4d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 28 Jun 2026 11:06:34 +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 b03ae4d..a6e678a 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": "Benefits", - "href": "#benefits" + "name": "Benefits", "href": "#benefits" }, { - "name": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,63 +49,40 @@ export default function Layout() { brand="Suncoast Credit Union" columns={[ { - title: "Products", - items: [ + title: "Products", items: [ { - label: "Savings", - href: "#", - }, + label: "Savings", href: "#"}, { - label: "Loans", - href: "#", - }, + label: "Loans", href: "#"}, { - label: "Business", - href: "#", - }, + label: "Business", href: "#"}, ], }, { - title: "Support", - items: [ + title: "Support", items: [ { - label: "FAQ", - href: "#", - }, + label: "FAQ", href: "#"}, { - label: "Contact", - href: "#", - }, + label: "Contact", href: "#"}, { - label: "About Us", - href: "#", - }, + label: "About Us", href: "#"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Use", - href: "#", - }, + label: "Terms of Use", href: "#"}, ], }, ]} copyright="© 2024 Suncoast Credit Union. All rights reserved. Federally insured by NCUA." links={[ { - label: "Privacy", - href: "#", - }, + label: "Privacy", href: "#"}, { - label: "Terms", - href: "#", - }, + label: "Terms", href: "#"}, ]} /> -- 2.49.1