From 5d7ab9232ee4ddd7a78fa731b90129e74fbdd9d3 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 11:33:46 +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 3079067..30d40a4 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 21 Jun 2026 11:33:49 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 43 ++++++++++++--------------------------- 1 file changed, 13 insertions(+), 30 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 30d40a4..2ffe916 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": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Admissions", - "href": "#contact" + "name": "Admissions", "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" }, { - "name": "Testimonial", - "href": "#testimonial" + "name": "Testimonial", "href": "#testimonial" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -60,25 +51,17 @@ export default function Layout() { { items: [ { - label: "About Us", - href: "#about", - }, + label: "About Us", href: "#about"}, { - label: "Programs", - href: "#features", - }, + label: "Programs", href: "#features"}, ], }, { items: [ { - label: "Admissions", - href: "#contact", - }, + label: "Admissions", href: "#contact"}, { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, ], }, ]} -- 2.49.1