From c0ea4831020b1e1ab3c5d5df13fc37cecabec44e Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 11:24:20 +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 50d097e..e18459a 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 13 Jun 2026 11:24:23 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 59 +++++++++++---------------------------- 1 file changed, 17 insertions(+), 42 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e18459a..ba940fc 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": "Programs", - "href": "#features" + "name": "Programs", "href": "#features" }, { - "name": "Admission", - "href": "#contact" + "name": "Admission", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Team", - "href": "#team" + "name": "Team", "href": "#team" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -60,45 +51,29 @@ export default function Layout() { { items: [ { - label: "About Us", - href: "#about", - }, + label: "About Us", href: "#about"}, { - label: "Programs", - href: "#features", - }, + label: "Programs", href: "#features"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, ], }, { items: [ { - label: "Admissions", - href: "#contact", - }, + label: "Admissions", href: "#contact"}, { - label: "FAQ", - href: "#", - }, + label: "FAQ", href: "#"}, { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, ], }, { items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Use", - href: "#", - }, + label: "Terms of Use", href: "#"}, ], }, ]} -- 2.49.1