Bob AI: Move the hero-new section to the very top, making it the fir

This commit is contained in:
kudinDmitriyUp
2026-06-04 11:00:10 +00:00
parent 3950eb763d
commit 2b17cb0a61

View File

@@ -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 (
<>
<HeroNewSection />
<AboutSection />
<ServicesSection />
<PortfolioSection />
@@ -18,7 +19,6 @@ import HeroNewSection from './HomePage/sections/HeroNew';export default function
<TestimonialsSection />
<FaqSection />
<ContactSection />
<HeroNewSection />
</>
);
}