From 23f7ad0cb3646f8a4cf95d347ad1d68d43e0bb32 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 15:56:06 +0000 Subject: [PATCH] Update app/contact/page.tsx --- app/contact/page.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 app/contact/page.tsx diff --git a/app/contact/page.tsx b/app/contact/page.tsx new file mode 100644 index 0000000..3af45d1 --- /dev/null +++ b/app/contact/page.tsx @@ -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 ( +
+ +
+ ); +}