function Page() { useReveal(); const [sent, setSent] = React.useState(false); const [loading, setLoading] = React.useState(false); async function submit(e) { e.preventDefault(); setLoading(true); const form = e.target; const data = new FormData(form); data.append("source", "Book_A_Demo"); try { const response = await fetch("https://formspree.io/f/xpqkvrpq", { method: "POST", body: data, headers: { 'Accept': 'application/json' } }); if (response.ok) { setSent(true); } else { alert("Oops! There was a problem submitting your request."); } } catch (err) { alert("Failed to send request. Please try again."); } finally { setLoading(false); } } const inputStyle = { width: "100%", padding: "14px 16px", border: "1px solid var(--line)", borderRadius: 10, fontFamily: "var(--font-sans)", fontSize: 15, color: "var(--ink)", background: "var(--paper-2)", outline: "none", boxSizing: "border-box", appearance: "none" }; return ( <>
Book a Demo

Let's build your
growth engine.

Schedule a 30-minute strategic walkthrough of the Auctera D-REVX platform. See how top performance marketers are scaling their ROAS.

Custom Strategy Breakdown

We'll analyze your current acquisition channels and show you where you're leaving money on the table.

Live D-REVX Walkthrough

A deep-dive into the D-REVX targeting capabilities, predictive bidding algorithms, and real-time reporting dashboard.

Transparent Pricing

We'll map out a clear pricing model based on your unique volume, margins, and integration requirements.

{sent ? (

Request Received

Our strategy team will be in touch shortly to coordinate a time.

Return to Home
) : (

By submitting, you agree to our Privacy Policy.

)}