Files
tenext-next/app/contacts/page.tsx
2026-07-30 12:58:31 +05:30

25 lines
653 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 - tenext",
};
export default function ContactsPage() {
return (
<>
<Navbar />
<main className="min-h-screen bg-tenext-dark">
<PageTitleBanner
title="Contacts"
breadcrumbs={[{ label: "Contacts" }]}
/>
<ContactFormSection />
<MapSection />
</main>
</>
);
}