diff --git a/app/contact/page.tsx b/app/contact/page.tsx new file mode 100644 index 0000000..6cd54a0 --- /dev/null +++ b/app/contact/page.tsx @@ -0,0 +1,79 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Footer } from "@/components/footer"; +import { KleapForm } from "@/components/kleap-form"; + +const contactFields = [ + { name: "name", label: "Name", type: "text", required: true }, + { name: "email", label: "Email", type: "email", required: true }, + { name: "subject", label: "Subject", type: "text", required: true }, + { name: "message", label: "Message", type: "textarea", required: true }, +]; + +export default function ContactPage() { + return ( +
+ +
+ Get in Touch + We're here to help with any questions or custom requests. +
+ +
+
+
+ +
+
+ +
+
+

Contact Information

+
+
+
+ {/* Icon */} +
+
+

Our Location

+

123 Fashion Street, Style City, SC 12345

+
+
+
+
+ {/* Icon */} +
+
+

Phone & WhatsApp

+

+1 (555) 123-4567

+
+
+
+
+ {/* Icon */} +
+
+

Email Address

+

hello@solevibe.com

+
+
+
+
+ +
+

Business Hours

+
    +
  • Monday - Friday 9:00 AM - 7:00 PM
  • +
  • Saturday 10:00 AM - 5:00 PM
  • +
  • Sunday Closed
  • +
+
+
+
+
+
+ ); +}