Files
tenext-next/app/about/page.tsx
2026-06-18 16:32:31 +05:30

30 lines
1.1 KiB
TypeScript

import { Navbar } from "@/components/aiero/Navbar";
import { PageTitleBanner } from "@/components/shared/PageTitleBanner";
import { MarqueeStrip } from "@/components/aiero/MarqueeStrip";
import { ContactFormSection } from "@/components/shared/ContactFormSection";
import { AboutIntroSection } from "@/components/aiero/about/AboutIntroSection";
import { MissionSection } from "@/components/aiero/about/MissionSection";
import { PartnerLogosSection } from "@/components/shared/PartnerLogosSection";
import { TeamSection } from "@/components/aiero/about/TeamSection";
export const metadata = {
title: "About us - Aiero",
};
export default function AboutPage() {
return (
<>
<Navbar />
<main className="min-h-screen bg-aiero-dark">
<PageTitleBanner title="About us" breadcrumbs={[{ label: "About us" }]} />
<AboutIntroSection />
<MarqueeStrip text="/ Neural Networks in shaping the future of technology." />
<MissionSection />
<PartnerLogosSection />
<TeamSection />
<ContactFormSection />
</main>
</>
);
}