Update app/contact/page.tsx
This commit is contained in:
parent
de27a7f7e8
commit
5aa5c84067
|
|
@ -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