33 lines
1.1 KiB
TypeScript
33 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 - tenext",
|
|
};
|
|
|
|
export default function AboutPage() {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<main className="min-h-screen bg-tenext-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>
|
|
</>
|
|
);
|
|
}
|