From 4ed414a99719f996599c9315c6739d0cd879e115 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 12:34:12 +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 5fd6d40..04e5e4d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 17 Jun 2026 12:34:15 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 110 +++++++++++--------------------------- 1 file changed, 32 insertions(+), 78 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 04e5e4d..2f8b7d8 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,102 +7,56 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Gallery", - "href": "#gallery" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { name: "Home", href: "#hero" }, + { name: "Features", href: "#features" }, + { name: "Pricing", href: "#pricing" }, + { name: "Contact", href: "#contact" }, + { name: "About", href: "#about" }, + { name: "Gallery", href: "#gallery" }, + { name: "Metrics", href: "#metrics" } + ]; return ( + logo="Bangladesh Horizon Drive" + logoImageSrc="http://img.b2bpic.net/free-vector/around-clock-neon-sign_1262-15862.jpg" + ctaButton={{ + text: "Pre-order Now", href: "#pricing"}} + navItems={navItems} + />
+ ]} + leftText="© 2024 Bangladesh Horizon Drive Team." + rightText="Powered by Unreal Engine 5." + />
); -- 2.49.1