From 5f243dfedba80dd28517f992c58a28db7e3ca558 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:02:22 +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 ( +
+ +
+ ); +}