Merge version_15_1781799567165 into main #14

Merged
bender merged 1 commits from version_15_1781799567165 into main 2026-06-18 16:20:20 +00:00

View File

@@ -1,41 +1,29 @@
// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
// Section bodies live in ./HomePage/sections/<X>.tsx. Edit the section
// files directly. Non-block content (wrappers, non-inlinable sections) is
// preserved inline; extracted section blocks become <XSection/> refs.
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import SocialProofSection from './HomePage/sections/SocialProof';
import AboutSection from './HomePage/sections/About';
import PortfolioSection from './HomePage/sections/Portfolio';
import MetricsSection from './HomePage/sections/Metrics';
import TestimonialsSection from './HomePage/sections/Testimonials';
import TeamSection from './HomePage/sections/Team';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
{/* webild-stub @2026-06-18T15:50:06.252Z: Include a marquee of recognizable partner or client logos to build instant industry authority and social proof into the portfolio for Yusupov Agency. */}
import SocialProofSection from './HomePage/sections/SocialProof';export default function HomePage(): React.JSX.Element {
export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
<>
<HeroSection />
<SocialProofSection />
<AboutSection />
<PortfolioSection />
<MetricsSection />
<TestimonialsSection />
<TeamSection />
<FaqSection />
<ContactSection />
<AboutSection />
<PortfolioSection />
<MetricsSection />
<TestimonialsSection />
<FaqSection />
<ContactSection />
</>
);
}
}