From a8b377d190379100620a410da7043094c22247fd Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 08:53:05 +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 df0a029..d9915ca 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 21 Jun 2026 08:53:08 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 90 +++++++++++++++------------------------ 1 file changed, 34 insertions(+), 56 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d9915ca..90448ef 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": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Exhibits", - "href": "#exhibits" + "name": "Exhibits", "href": "#exhibits" }, { - "name": "Visitor Info", - "href": "#info" + "name": "Visitor Info", "href": "#info" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Visitor Exp", - "href": "#visitor-exp" + "name": "Visitor Exp", "href": "#visitor-exp" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -42,58 +35,43 @@ export default function Layout() { + logo="Trail Center" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=k7fqvi" + ctaButton={{ + text: "Plan Visit", href: "#contact"}} + navItems={navItems} + />
+ ]} + leftText="© 2024 California Trail Interpretive Center" + rightText="1 Interpretive Center Way, Elko, NV 89801" + /> ); -- 2.49.1