fix about page

This commit is contained in:
2026-06-18 19:48:20 +05:30
parent 8e0d704438
commit 9768eabe4d
163 changed files with 20461 additions and 23 deletions

View File

@@ -5,6 +5,15 @@ import { PossibilitiesSection } from "@/components/aiero/PossibilitiesSection";
import { TinkerSection } from "@/components/aiero/TinkerSection";
import { MarqueeStrip } from "@/components/aiero/MarqueeStrip";
import { FeaturesSection } from "@/components/aiero/FeaturesSection";
import { WOWSection } from "@/components/aiero/WOWSection";
import { BenefitsGridSection } from "@/components/aiero/BenefitsGridSection";
import { MetricsSection } from "@/components/aiero/MetricsSection";
import { HowItWorksSection } from "@/components/aiero/HowItWorksSection";
import { TeamSection } from "@/components/aiero/about/TeamSection";
import { TestimonialsSection } from "@/components/aiero/services/TestimonialsSection";
import { BlogSection } from "@/components/aiero/BlogSection";
import { PartnerLogosSection } from "@/components/shared/PartnerLogosSection";
import { PreFooterCTA } from "@/components/shared/PreFooterCTA";
export default function Home() {
return (
@@ -16,8 +25,23 @@ export default function Home() {
<CardsGrid />
<PossibilitiesSection />
<TinkerSection />
<MarqueeStrip />
<MarqueeStrip text="/ Join ChatGPT in shaping the future of technology for whole world." />
<section
className="relative z-[15] mt-[40px] mb-[-90px] px-[20px] pb-[40px]"
style={{ transform: "rotate(-2.07deg)" }}
>
<div className="h-[130px] w-full rounded-[20px] bg-aiero-dark" />
</section>
<WOWSection />
<FeaturesSection />
<BenefitsGridSection />
<MetricsSection />
<HowItWorksSection />
<TeamSection />
<TestimonialsSection />
<BlogSection />
<PartnerLogosSection />
<PreFooterCTA />
</main>
);
}