From c9c60ba545736e35730425d2be4e4e5e11c4db6e Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 09:34:04 +0000 Subject: [PATCH 1/2] Bob AI: Changed navbar to NavbarFloating to show links horizontally --- src/components/Layout.tsx | 5 +- src/pages/HomePage.tsx | 312 ++------------------- src/pages/HomePage/sections/Categories.tsx | 57 ++++ src/pages/HomePage/sections/Community.tsx | 42 +++ src/pages/HomePage/sections/Garage.tsx | 26 ++ src/pages/HomePage/sections/Hero.tsx | 29 ++ src/pages/HomePage/sections/Manifesto.tsx | 22 ++ src/pages/HomePage/sections/Newsletter.tsx | 27 ++ src/pages/HomePage/sections/Products.tsx | 106 +++++++ src/pages/HomePage/sections/Social.tsx | 57 ++++ 10 files changed, 392 insertions(+), 291 deletions(-) create mode 100644 src/pages/HomePage/sections/Categories.tsx create mode 100644 src/pages/HomePage/sections/Community.tsx create mode 100644 src/pages/HomePage/sections/Garage.tsx create mode 100644 src/pages/HomePage/sections/Hero.tsx create mode 100644 src/pages/HomePage/sections/Manifesto.tsx create mode 100644 src/pages/HomePage/sections/Newsletter.tsx create mode 100644 src/pages/HomePage/sections/Products.tsx create mode 100644 src/pages/HomePage/sections/Social.tsx diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 4a727b9..b69823a 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,5 +1,5 @@ import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; -import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; +import NavbarFloating from '@/components/ui/NavbarFloating'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; import { Outlet } from 'react-router-dom'; @@ -34,9 +34,8 @@ export default function Layout() { - diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 25249a0..a1f0b59 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,300 +1,36 @@ -import AboutTextSplit from '@/components/sections/about/AboutTextSplit'; -import ContactCta from '@/components/sections/contact/ContactCta'; -import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; -import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards'; -import HeroSplit from '@/components/sections/hero/HeroSplit'; -import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards'; -import TestimonialMarqueeOverlayCards from '@/components/sections/testimonial/TestimonialMarqueeOverlayCards'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +// AUTO-GENERATED shell by per-section-migrate. +// Section bodies live in .//sections/.tsx. Edit the section +// files directly. Non-block content (wrappers, non-inlinable sections) is +// preserved inline; extracted section blocks become refs. -export default function HomePage() { +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import ManifestoSection from './HomePage/sections/Manifesto'; +import CategoriesSection from './HomePage/sections/Categories'; +import CommunitySection from './HomePage/sections/Community'; +import ProductsSection from './HomePage/sections/Products'; +import SocialSection from './HomePage/sections/Social'; +import GarageSection from './HomePage/sections/Garage'; +import NewsletterSection from './HomePage/sections/Newsletter'; + +export default function HomePage(): React.JSX.Element { return ( - <> -
- - - -
+<> + -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ ); } diff --git a/src/pages/HomePage/sections/Categories.tsx b/src/pages/HomePage/sections/Categories.tsx new file mode 100644 index 0000000..22f206f --- /dev/null +++ b/src/pages/HomePage/sections/Categories.tsx @@ -0,0 +1,57 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "categories" section. + +import React from 'react'; +import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function CategoriesSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Community.tsx b/src/pages/HomePage/sections/Community.tsx new file mode 100644 index 0000000..582de27 --- /dev/null +++ b/src/pages/HomePage/sections/Community.tsx @@ -0,0 +1,42 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "community" section. + +import React from 'react'; +import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function CommunitySection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Garage.tsx b/src/pages/HomePage/sections/Garage.tsx new file mode 100644 index 0000000..4a321ee --- /dev/null +++ b/src/pages/HomePage/sections/Garage.tsx @@ -0,0 +1,26 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "garage" section. + +import React from 'react'; +import AboutTextSplit from '@/components/sections/about/AboutTextSplit'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function GarageSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx new file mode 100644 index 0000000..4e3020c --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,29 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "hero" section. + +import React from 'react'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Manifesto.tsx b/src/pages/HomePage/sections/Manifesto.tsx new file mode 100644 index 0000000..14b170e --- /dev/null +++ b/src/pages/HomePage/sections/Manifesto.tsx @@ -0,0 +1,22 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "manifesto" section. + +import React from 'react'; +import AboutTextSplit from '@/components/sections/about/AboutTextSplit'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function ManifestoSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Newsletter.tsx b/src/pages/HomePage/sections/Newsletter.tsx new file mode 100644 index 0000000..b55b439 --- /dev/null +++ b/src/pages/HomePage/sections/Newsletter.tsx @@ -0,0 +1,27 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "newsletter" section. + +import React from 'react'; +import ContactCta from '@/components/sections/contact/ContactCta'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function NewsletterSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Products.tsx b/src/pages/HomePage/sections/Products.tsx new file mode 100644 index 0000000..bb6c551 --- /dev/null +++ b/src/pages/HomePage/sections/Products.tsx @@ -0,0 +1,106 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "products" section. + +import React from 'react'; +import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function ProductsSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Social.tsx b/src/pages/HomePage/sections/Social.tsx new file mode 100644 index 0000000..554d8c1 --- /dev/null +++ b/src/pages/HomePage/sections/Social.tsx @@ -0,0 +1,57 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "social" section. + +import React from 'react'; +import TestimonialMarqueeOverlayCards from '@/components/sections/testimonial/TestimonialMarqueeOverlayCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function SocialSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} -- 2.49.1 From aeb80e953ac56ba72d1ba7e5b101d719a0e18661 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 09:44:12 +0000 Subject: [PATCH 2/2] Bob AI: Changed navbar to inline layout to show all links horizontal --- src/components/Layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index b69823a..d86caea 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,5 +1,5 @@ import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; -import NavbarFloating from '@/components/ui/NavbarFloating'; +import NavbarInline from '@/components/ui/NavbarInline'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; import { Outlet } from 'react-router-dom'; @@ -34,7 +34,7 @@ export default function Layout() { -