Update app/contact/page.tsx

This commit is contained in:
kleap-admin 2026-01-15 13:02:22 +00:00
parent a11707d475
commit 5f243dfedb
1 changed files with 14 additions and 0 deletions

14
app/contact/page.tsx Normal file
View File

@ -0,0 +1,14 @@
import { ContactForm } from "@/components/contact";
export const metadata = {
title: "Contact Us",
description: "Get in touch with us. We'd love to hear from you.",
};
export default function ContactPage() {
return (
<div className="min-h-screen bg-white dark:bg-black pt-20">
<ContactForm />
</div>
);
}