"use client"; import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { KleapForm, KleapFormField } from "@/components/kleap-form"; export function ContactSection() { const fields: KleapFormField[] = [ { name: "name", label: "Full Name", type: "text", required: true }, { name: "email", label: "Email Address", type: "email", required: true }, { name: "service", label: "Interested Service", type: "select", options: [ "AI Solutions", "Digital Transformation", "Security Services", "Web Design", "App Development", "Cloud Services", "Tax Filing", "Event Security" ], required: true }, { name: "message", label: "How can we help?", type: "textarea", required: true }, ]; return (
Get in Touch Ready to transform your operations? Contact us today for a consultation.
); }