Merge version_5_1780570782107 into main #4

Merged
bender merged 1 commits from version_5_1780570782107 into main 2026-06-04 11:00:50 +00:00

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 />
</>
);
}