app-sleepy-manatee-skip/app/contact/page.tsx

15 lines
329 B
TypeScript

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