diff --git a/app/contact/page.tsx b/app/contact/page.tsx new file mode 100644 index 0000000..f8cd7d0 --- /dev/null +++ b/app/contact/page.tsx @@ -0,0 +1,106 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Footer } from "@/components/footer"; +import { KleapForm } from "@/components/kleap-form"; + +export default function ContactPage() { + const contactFields = [ + { + name: "name", + label: "Full Name", + type: "text" as const, + required: true, + placeholder: "John Doe", + }, + { + name: "email", + label: "Email Address", + type: "email" as const, + required: true, + placeholder: "john@example.com", + }, + { + name: "phone", + label: "Phone Number", + type: "tel" as const, + placeholder: "+1 (555) 000-0000", + }, + { + name: "subject", + label: "Subject", + type: "text" as const, + required: true, + placeholder: "How can we help?", + }, + { + name: "message", + label: "Message", + type: "textarea" as const, + required: true, + placeholder: "Tell us more about your inquiry...", + }, + ]; + + return ( + <> +
+ + Contact Us +

+ We'd love to hear from you. Send us a message and we'll respond as soon as possible. +

+
+
+ +
+ +
+
+

Get in Touch

+
+
+

📍 Visit Our Showroom

+

+ 123 Furniture Street
+ Design District, NY 10001
+ United States +

+
+
+

📞 Call Us

+

+ +1 (555) 123-4567
+ Mon-Fri: 9am - 6pm EST +

+
+
+

✉️ Email Us

+

+ support@furnihome.com
+ sales@furnihome.com +

+
+
+

💬 Live Chat

+

+ Available Mon-Fri: 9am - 6pm EST
+ Click the chat icon in the bottom right +

+
+
+
+
+ +
+
+
+
+ +