update home page
This commit is contained in:
29
app/about/page.tsx
Normal file
29
app/about/page.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user