// ============================================================ // CONTACT PAGE — HELLO. headline + Melissa letter + form // ============================================================ function ContactPage() { const [sent, setSent] = React.useState(false); const [form, setForm] = React.useState({ name: '', company: '', email: '', goal: '', message: '', }); const set = (k) => (e) => setForm(f => ({ ...f, [k]: e.target.value })); const submit = (e) => { e.preventDefault(); if (!form.name || !form.email || !form.message) return; setSent(true); window.scrollTo({ top: document.querySelector('.contact-form').offsetTop - 100, behavior: 'smooth' }); }; return ( <>

HELLO.

At inevidence, our goal is simple: to roll up our sleeves, listen closely, and work alongside you to build solutions that actually move the needle.

We're looking forward to learning more about your challenges and sharing ideas on how we can help.

Drop me a line,

Melissa.
Founding Partner · London
Email hello@inevidence.com
London 2 Finsbury Avenue, EC2M 2PP
Boston 100 Cambridge Street, MA 02114
Sydney 1 Bligh Street, NSW 2000
Hours Mon–Fri · We respond within one working day
{sent ? ( <>

Thank you, {form.name.split(' ')[0]}.

Your message is with us. Melissa or someone from the team will be in touch within one working day — usually with a few thoughtful questions and a suggested next step.
) : ( <>

Tell us a little about you.

A few quick fields. We'll come back with a clear, considered response — no auto-replies, no chatbots.

)}
); } window.ContactPage = ContactPage;