From c4f82aec9b93b4966c9c2f6774b5209e436524a5 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 4 Jun 2026 10:54:47 +0000 Subject: [PATCH] Bob AI: Move the hero section to be the first section on the page. --- src/pages/HomePage.tsx | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 3ff1c22..90d33a9 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,7 +1,3 @@ -// AUTO-GENERATED shell by per-section-migrate. -// Section bodies live in .//sections/.tsx. Edit the section -// files directly; this shell only fixes render order. - import React from 'react'; import AboutSection from './HomePage/sections/About'; import ServicesSection from './HomePage/sections/Services'; @@ -10,11 +6,12 @@ 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'; - -import HeroSection from './HomePage/sections/Hero';export default function HomePage(): React.JSX.Element { +export default function HomePage(): React.JSX.Element { return ( <> + @@ -22,7 +19,6 @@ import HeroSection from './HomePage/sections/Hero';export default function HomeP - ); -} +} \ No newline at end of file