From 70fb23954d221b6d6701db8d79396915475b2492 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 01:53:33 +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 3ebac4f..d646385 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 14 Jun 2026 01:53:36 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 88 +++++++++++++++------------------------ 1 file changed, 34 insertions(+), 54 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d646385..27bf2c4 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": "Home", - "href": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Quiz", - "href": "#quiz-categories" + "name": "Quiz", "href": "#quiz-categories" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Gallery", - "href": "#gallery" + "name": "Gallery", "href": "#gallery" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" }, { - "name": "Impossible Trivia", - "href": "#impossible-trivia" + "name": "Impossible Trivia", "href": "#impossible-trivia" } ]; @@ -42,57 +35,44 @@ export default function Layout() { + logo="ManarQuiz" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=gj9svy" + ctaButton={{ + text: "Start Quiz", href: "#quiz-categories"}} + navItems={navItems} + />
+ label: "Privacy", href: "#"}, + ]} + imageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=gj9svy" + /> ); -- 2.49.1