From 8cbfdd30fae6c9c23ee8c2b1c211df92d5316b51 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 20 Jun 2026 20:35:32 +0000 Subject: [PATCH 1/2] Bob AI: Remove logo text from navbar --- src/components/Layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index f71fb15..4334b9e 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -38,7 +38,7 @@ export default function Layout() { -- 2.49.1 From da540a0bdbbd522e3d3d62ca217c0383eb2ba1cf Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 20 Jun 2026 20:39:14 +0000 Subject: [PATCH 2/2] Bob AI: Update hero section with new content and styling --- src/index.css | 10 +++++----- src/pages/HomePage/sections/Hero.tsx | 30 ++++++++++------------------ 2 files changed, 15 insertions(+), 25 deletions(-) diff --git a/src/index.css b/src/index.css index 8150a4f..6274054 100644 --- a/src/index.css +++ b/src/index.css @@ -5,11 +5,11 @@ :root { /* @colorThemes/lightTheme/grayNavyBlue */ - --background: #f5f5dc; - --card: #faf0e6; - --foreground: #3e2723; - --primary-cta: #8b5a2b; - --primary-cta-text: #ffffff; + --background: #fdfbf7; + --card: #f5f0e6; + --foreground: #2d1a11; + --primary-cta: #d4af37; + --primary-cta-text: #2d1a11; --secondary-cta: #faf0e6; --secondary-cta-text: #8b5a2b; --accent: #a0522d; diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index 76d8f24..5f6b950 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,28 +1,18 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "hero" section. +// Created by add_section_from_catalog (HeroOverlay). import React from 'react'; import HeroBillboard from '@/components/sections/hero/HeroBillboard'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function HeroSection(): React.JSX.Element { return ( -
- - - -
+
+ +
); } -- 2.49.1