diff --git a/components/contact-section.tsx b/components/contact-section.tsx new file mode 100644 index 0000000..418375f --- /dev/null +++ b/components/contact-section.tsx @@ -0,0 +1,74 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { KleapForm } from "@/components/kleap-form"; +import { MessageSquare, Phone, Mail } from "lucide-react"; + +export function ContactSection() { + const fields = [ + { name: "name", label: "Full Name", type: "text", required: true }, + { name: "email", label: "Email Address", type: "email", required: true }, + { name: "phone", label: "Phone Number", type: "tel", required: false }, + { + name: "business_type", + label: "Business Type", + type: "select", + options: ["Restaurant/Café", "Startup", "Local Business", "E-commerce", "Other"], + required: true + }, + { name: "message", label: "How can we help?", type: "textarea", required: true }, + ]; + + return ( +
+ +
+
+ Let's Build Something Great + + Ready to take your business online? Fill out the form and we'll get back to you within 24 hours. + + +
+
+
+ +
+
+

Call Us

+

+1 (555) 000-0000

+
+
+
+
+ +
+
+

Email Us

+

hello@websitter.com

+
+
+
+
+ +
+
+

WhatsApp

+

Chat with us now

+
+
+
+
+ +
+ +
+
+
+
+ ); +}