From a3a7c23a6611446289c67046f3f15abf50296d26 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 20:29:24 +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 4ef98cc..0fc807b 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 20:29:27 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 95 ++++++++++++--------------------------- 1 file changed, 28 insertions(+), 67 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 0fc807b..b700c91 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,89 +7,50 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Team", - "href": "#team" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonial", - "href": "#testimonial" - } -]; + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Team", href: "#team" }, + { name: "Contact", href: "#contact" }, + { name: "Features", href: "#features" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonial", href: "#testimonial" } + ]; return ( + logo="Tumaini School" + logoImageSrc="http://img.b2bpic.net/free-photo/portrait-schoolgirl-with-big-notepad-template_23-2148203853.jpg" + ctaButton={{ + text: "Enroll Now", href: "#contact"}} + navItems={navItems} + />
+ ]} + leftText="Tumaini Senior Secondary School" + rightText="© 2024 Tumaini Senior Secondary School. All rights reserved." + />
);