"use client"; import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { KleapForm, KleapFormField } from "@/components/kleap-form"; import { Card } from "@/components/ui/card"; import { Phone, Mail, MapPin } from "lucide-react"; export function ContactForm() { const fields: KleapFormField[] = [ { name: "name", label: "Full Name", type: "text", required: true }, { name: "email", label: "Work Email", type: "email", required: true }, { name: "company", label: "Company Name", type: "text", required: true }, { name: "phone", label: "Phone Number", type: "tel", required: false }, { name: "service", label: "Interested In", type: "select", options: ["Cold Email", "LinkedIn Outreach", "Appointment Setting", "Full Service"], required: true }, { name: "message", label: "How can we help?", type: "textarea", required: true }, ]; return (
Ready to grow? Schedule a free strategy session with our lead generation experts. We'll analyze your current process and show you how to scale.

Call us

0721 307 788

Email us

hello@astraleads.com

Visit us

London, United Kingdom

); }