From 0dc9691b884d709dc0857684a72d9f23dc33e4bf Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 4 Jun 2026 10:56:33 +0000 Subject: [PATCH] Bob AI: Replaced hero section with HeroBillboardFeatures to add floa --- src/pages/HomePage.tsx | 6 +++--- src/pages/HomePage/sections/Hero.tsx | 19 ------------------- src/pages/HomePage/sections/HeroNew.tsx | 20 ++++++++++++++++++++ 3 files changed, 23 insertions(+), 22 deletions(-) delete mode 100644 src/pages/HomePage/sections/Hero.tsx create mode 100644 src/pages/HomePage/sections/HeroNew.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 90d33a9..0ed6046 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -6,12 +6,11 @@ import MetricsSection from './HomePage/sections/Metrics'; import TestimonialsSection from './HomePage/sections/Testimonials'; import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -import HeroSection from './HomePage/sections/Hero'; -export default function HomePage(): React.JSX.Element { + +import HeroNewSection from './HomePage/sections/HeroNew';export default function HomePage(): React.JSX.Element { return ( <> - @@ -19,6 +18,7 @@ export default function HomePage(): React.JSX.Element { + ); } \ No newline at end of file diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx deleted file mode 100644 index 22e1b74..0000000 --- a/src/pages/HomePage/sections/Hero.tsx +++ /dev/null @@ -1,19 +0,0 @@ -// Created by add_section_from_catalog (HeroBillboard). - -import React from 'react'; -import HeroBillboard from '@/components/sections/hero/HeroBillboard'; - -export default function HeroSection(): React.JSX.Element { - return ( -
- -
- ); -} diff --git a/src/pages/HomePage/sections/HeroNew.tsx b/src/pages/HomePage/sections/HeroNew.tsx new file mode 100644 index 0000000..1638269 --- /dev/null +++ b/src/pages/HomePage/sections/HeroNew.tsx @@ -0,0 +1,20 @@ +// Created by add_section_from_catalog (HeroBillboardFeatures). + +import React from 'react'; +import HeroBillboardFeatures from '@/components/sections/hero/HeroBillboardFeatures'; + +export default function HeroNewSection(): React.JSX.Element { + return ( +
+ +
+ ); +}