Files
tenext-next/app/contacts/page.tsx
2026-08-03 14:42:01 +05:30

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>
</>
);
}