Update app/contact/page.tsx
This commit is contained in:
parent
a11707d475
commit
5f243dfedb
|
|
@ -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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue