From 51911dbeafd6907fa1c5309f641f6d6cc6204048 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 16:56:11 +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 b324d00..3e7d49d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 13 Jun 2026 16:56:14 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 80 +++++++++++++++------------------------ 1 file changed, 31 insertions(+), 49 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3e7d49d..934af7e 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": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "How it Works", - "href": "#how-it-works" + "name": "How it Works", "href": "#how-it-works" }, { - "name": "Showcase", - "href": "#showcase" + "name": "Showcase", "href": "#showcase" }, { - "name": "FAQ", - "href": "#faq" + "name": "FAQ", "href": "#faq" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Stats", - "href": "#stats" + "name": "Stats", "href": "#stats" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" } ]; @@ -42,51 +35,40 @@ export default function Layout() { + logo="Duom Cepte" + logoImageSrc="http://img.b2bpic.net/free-vector/geometric-icon-collecti_1408-27.jpg" + ctaButton={{ + text: "Get Started", href: "#cta"}} + navItems={navItems} + />
+ ]} + /> ); -- 2.49.1