27 lines
795 B
TypeScript
27 lines
795 B
TypeScript
import { Navbar } from "@/components/sections/Navbar";
|
|
import { PageTitleBanner } from "@/components/shared/PageTitleBanner";
|
|
import { ContactFormSection } from "@/components/shared/ContactFormSection";
|
|
import { MapSection } from "@/components/sections/contacts/MapSection";
|
|
|
|
export const metadata = {
|
|
title: "Contact",
|
|
description:
|
|
"Talk to Tenext Technologies about cloud, data, AI, and product engineering for your enterprise.",
|
|
};
|
|
|
|
export default function ContactsPage() {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<main className="min-h-screen bg-tenext-dark">
|
|
<PageTitleBanner
|
|
title="Contact"
|
|
breadcrumbs={[{ label: "Home", href: "/" }, { label: "Contact" }]}
|
|
/>
|
|
<ContactFormSection />
|
|
<MapSection />
|
|
</main>
|
|
</>
|
|
);
|
|
}
|