From bab0d132341a647ac3b18de688fb6c087f591396 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 14:11:44 +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 081f9c6..df8714e 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -44,6 +44,7 @@ export default function Layout() { Date: Sun, 21 Jun 2026 14:11:47 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 62 +++++++++++++++------------------------ 1 file changed, 24 insertions(+), 38 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index df8714e..3b76f0a 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Discover", - "href": "#hero" + "name": "Discover", "href": "#hero" }, { - "name": "Categories", - "href": "#categories" + "name": "Categories", "href": "#categories" }, { - "name": "Hacks", - "href": "#hacks" + "name": "Hacks", "href": "#hacks" }, { - "name": "Saved", - "href": "#saved" + "name": "Saved", "href": "#saved" }, { - "name": "Trending", - "href": "#trending" + "name": "Trending", "href": "#trending" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" } ]; @@ -43,36 +36,29 @@ export default function Layout() { + logo="DiscoverLife" + logoImageSrc="http://img.b2bpic.net/free-vector/gradient-abstract-polygonal-logo-template_23-2148209082.jpg" + ctaButton={{ + text: "Get App", href: "#contact"}} + navItems={navItems} + />
+ brand="DiscoverLife" + copyright="© 2024 Discovery App. All rights reserved." + socialLinks={[ + { + icon: "Twitter", href: "#"}, + { + icon: "Instagram", href: "#"}, + { + icon: "Github", href: "#"}, + ]} + /> );