From 7cfce5a8fd95960d8742792fc8f6112d1a7735fe Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 15:09:50 +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 e26dfd6..3b491e4 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 17 Jun 2026 15:09:53 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 105 +++++++++++--------------------------- 1 file changed, 31 insertions(+), 74 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3b491e4..0b4ed20 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,98 +7,55 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Features", - "href": "#features" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { "name": "Features", "href": "#features" }, + { "name": "Pricing", "href": "#pricing" }, + { "name": "Testimonials", "href": "#testimonials" }, + { "name": "Hero", "href": "#hero" }, + { "name": "About", "href": "#about" }, + { "name": "Metrics", "href": "#metrics" }, + { "name": "Faq", "href": "#faq" } + ]; return ( + logo="Launchoras" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=slkqlt" + ctaButton={{ + text: "Get Started", href: "#contact"}} + navItems={navItems} + />
+ ]} + leftText="© 2024 Launchoras. All rights reserved." + rightText="Designed with precision." + />
); -- 2.49.1