From 39d9941b5852f7159aa1e107275045fa56882632 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 3 Jun 2026 14:32:26 +0000 Subject: [PATCH 1/2] Bob AI: i want a simpler 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 1bf23c3..343c9da 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,5 +1,5 @@ import FooterBrand from '@/components/sections/footer/FooterBrand'; -import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; +import NavbarMinimal from '@/components/ui/NavbarMinimal'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; import { Outlet } from 'react-router-dom'; -- 2.49.1 From 38b4a3e01d5733eeba98b033297a97405871877e Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 3 Jun 2026 14:33:20 +0000 Subject: [PATCH 2/2] Bob AI: fix build errors (attempt 1) --- src/components/Layout.tsx | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 343c9da..40d16d1 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,9 +1,9 @@ import FooterBrand from '@/components/sections/footer/FooterBrand'; -import NavbarMinimal from '@/components/ui/NavbarMinimal'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; import { Outlet } from 'react-router-dom'; import { StyleProvider } from "@/components/ui/StyleProvider"; +import Button from "@/components/ui/Button"; export default function Layout() { const navItems = [ @@ -37,12 +37,21 @@ export default function Layout() { - +
@@ -90,4 +99,4 @@ export default function Layout() { ); -} +} \ No newline at end of file -- 2.49.1