Contact Us
Ready for unlimited job applications? Let's build a custom plan for your agency.
Message Sent!
Our enterprise team will respond within 24 hours.
← Back to AutoJobsPrefer email? enterprise@hostpioneers.com
Response time: <24 hours
"use client" import { useState } from "react" import Link from "next/link" export default function ContactPage() { const [form, setForm] = useState({ name: "", company: "", email: "", phone: "", type: "enterprise", message: "" }) const [loading, setLoading] = useState(false) const [success, setSuccess] = useState(false) const [error, setError] = useState("") const handleSubmit = async (e: React.FormEvent) => { e.preventDefault() setLoading(true) setError("") try { await new Promise(resolve => setTimeout(resolve, 1500)) setSuccess(true) } catch { setError("Something went wrong. Please try again.") } setLoading(false) } return (
Ready for unlimited job applications? Let's build a custom plan for your agency.
Our enterprise team will respond within 24 hours.
← Back to AutoJobsPrefer email? enterprise@hostpioneers.com
Response time: <24 hours