From 043ae9b1eec0d7f98ccea80e15e9e5070d5a3677 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 06:01:55 +0000 Subject: [PATCH 1/2] Bob AI: Added a products section using the HeroBillboard component. --- src/pages/HomePage.tsx | 4 +++- src/pages/HomePage/sections/ProductHero.tsx | 18 ++++++++++++++++++ src/pages/HomePage/sections/Products.tsx | 18 ++++++++++++++++++ 3 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/ProductHero.tsx create mode 100644 src/pages/HomePage/sections/Products.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 1f510c7..bd50901 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -15,12 +15,14 @@ import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -import GuaranteeSection from './HomePage/sections/Guarantee';export default function HomePage(): React.JSX.Element { +import GuaranteeSection from './HomePage/sections/Guarantee'; +import ProductHeroSection from './HomePage/sections/ProductHero';export default function HomePage(): React.JSX.Element { return ( + diff --git a/src/pages/HomePage/sections/ProductHero.tsx b/src/pages/HomePage/sections/ProductHero.tsx new file mode 100644 index 0000000..156decc --- /dev/null +++ b/src/pages/HomePage/sections/ProductHero.tsx @@ -0,0 +1,18 @@ +// Created by add_section_from_catalog (HeroBillboard). + +import React from 'react'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; + +export default function ProductHeroSection(): 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..1dfdf5f --- /dev/null +++ b/src/pages/HomePage/sections/Products.tsx @@ -0,0 +1,18 @@ +// Created by add_section_from_catalog (HeroBillboard). + +import React from 'react'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; + +export default function ProductsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} -- 2.49.1 From a6c6fd16aed03031517456fd6e8e30c1e032542b Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 06:02:37 +0000 Subject: [PATCH 2/2] Bob AI: fix build errors (attempt 1) --- src/pages/HomePage/sections/ProductHero.tsx | 3 ++- src/pages/HomePage/sections/Products.tsx | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pages/HomePage/sections/ProductHero.tsx b/src/pages/HomePage/sections/ProductHero.tsx index 156decc..b1260cc 100644 --- a/src/pages/HomePage/sections/ProductHero.tsx +++ b/src/pages/HomePage/sections/ProductHero.tsx @@ -12,7 +12,8 @@ export default function ProductHeroSection(): React.JSX.Element { secondaryButton={{"text":"Contact Sales","href":"#contact"}} tag="Products" description="Explore our full range of ergonomic solutions designed to relieve pain and improve your daily life." + imageSrc="" /> ); -} +} \ No newline at end of file diff --git a/src/pages/HomePage/sections/Products.tsx b/src/pages/HomePage/sections/Products.tsx index 1dfdf5f..65ce9f6 100644 --- a/src/pages/HomePage/sections/Products.tsx +++ b/src/pages/HomePage/sections/Products.tsx @@ -12,7 +12,8 @@ export default function ProductsSection(): React.JSX.Element { secondaryButton={{"text":"Learn More","href":"#contact"}} description="Discover our range of ergonomic solutions designed to relieve pain and improve your daily life." primaryButton={{"text":"Shop Now","href":"#products"}} + imageSrc="" /> ); -} +} \ No newline at end of file -- 2.49.1