22 lines
623 B
TypeScript
22 lines
623 B
TypeScript
import { Navbar } from "@/components/aiero/Navbar";
|
|
import { PageTitleBanner } from "@/components/shared/PageTitleBanner";
|
|
import { ContactFormSection } from "@/components/shared/ContactFormSection";
|
|
import { MapSection } from "@/components/aiero/contacts/MapSection";
|
|
|
|
export const metadata = {
|
|
title: "Contacts - Aiero",
|
|
};
|
|
|
|
export default function ContactsPage() {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<main className="min-h-screen bg-aiero-dark">
|
|
<PageTitleBanner title="Contacts" breadcrumbs={[{ label: "Contacts" }]} />
|
|
<ContactFormSection />
|
|
<MapSection />
|
|
</main>
|
|
</>
|
|
);
|
|
}
|