From 2b17cb0a61274fc12b1720a2197dc0f1704464f2 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 4 Jun 2026 11:00:10 +0000 Subject: [PATCH] Bob AI: Move the hero-new section to the very top, making it the fir --- src/pages/HomePage.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 0ed6046..180b3cd 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,4 +1,5 @@ import React from 'react'; +import HeroNewSection from './HomePage/sections/HeroNew'; import AboutSection from './HomePage/sections/About'; import ServicesSection from './HomePage/sections/Services'; import PortfolioSection from './HomePage/sections/Portfolio'; @@ -7,10 +8,10 @@ import TestimonialsSection from './HomePage/sections/Testimonials'; import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; - -import HeroNewSection from './HomePage/sections/HeroNew';export default function HomePage(): React.JSX.Element { +export default function HomePage(): React.JSX.Element { return ( <> + @@ -18,7 +19,6 @@ import HeroNewSection from './HomePage/sections/HeroNew';export default function - ); } \ No newline at end of file -- 2.49.1