update home page

This commit is contained in:
2026-06-18 16:32:31 +05:30
parent d9cc83aa82
commit 8e0d704438
57 changed files with 2813 additions and 301 deletions

21
app/contacts/page.tsx Normal file
View File

@@ -0,0 +1,21 @@
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>
</>
);
}