function ContactPage() {
const [sent, setSent] = React.useState(false);
return (
{/* Header */}
Start paying it down,
before you have to.
A 60-minute working session with Sam to locate the process debt in your
organization and decide, honestly, where to begin.
{/* Form + sidebar */}
{sent ? (
Received
Thanks. You'll hear back from Sam within one business day — usually
the same day. If it's urgent, email
sam@step4consulting.com.
) : (
)}
);
}
function LField({ label, type = 'text', placeholder }) {
return (
);
}
function Chip({ label }) {
const [on, setOn] = React.useState(false);
return (
);
}
window.ContactPage = ContactPage;