From e673fe9654d677e70b2433da33f9e099039c76cc Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 00:50:06 +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 c58e37c..93934e2 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 00:50:09 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 120 +++++++++++--------------------------- 1 file changed, 34 insertions(+), 86 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 93934e2..01aec50 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,110 +7,58 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Features", - "href": "#features" - }, - { - "name": "Products", - "href": "#products" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { "name": "Features", "href": "#features" }, + { "name": "Products", "href": "#products" }, + { "name": "Pricing", "href": "#pricing" }, + { "name": "Contact", "href": "#contact" }, + { "name": "Hero", "href": "#hero" }, + { "name": "About", "href": "#about" }, + { "name": "Metrics", "href": "#metrics" } + ]; return ( + logo="EduManage" + logoImageSrc="http://img.b2bpic.net/free-vector/gradient-high-school-logo_23-2149656391.jpg" + ctaButton={{ + text: "Get Started", href: "#contact"}} + navItems={navItems} + />
+ ]} + leftText="© 2024 EduManage System." + rightText="Transforming Education." + />
);