// ContactPage.jsx // // Deliberately form-only for direct contact - no invented email address, // phone number, or office address, since none is verified/real. Reuses // DemoRequestForm with a distinct interestType so a general inquiry isn't // miscounted as a demo-specific lead. Expectation-setting copy below // deliberately avoids any specific response-time commitment ("within 24 // hours" etc.) since that's not a real, verifiable SLA - it says what's // true (we read it ourselves) without promising a number we can't back. // // Loaded as a classic (non-module) Babel-transformed script - see // index.html's header comment. const AFTER_YOU_REACH_OUT = [ { title: "A real person reads it", body: "Not a support queue or an auto-responder chain - the message goes to the team directly.", }, { title: "We reply from the same context you gave us", body: "If you mentioned a specific module or problem, that's what the reply is actually about, not a generic template.", }, { title: "No pressure, no sales sequence", body: "If you're not ready for a demo yet, that's a fine answer - we're not going to chase you with a drip campaign.", }, ]; const OTHER_WAYS = [ { title: "Ready to see it running?", body: "Skip the form and go straight to a scoped walkthrough.", href: "/request-demo/", cta: "Request a Demo" }, { title: "Looking for a job, not a demo?", body: "See our one real, current opening.", href: "/careers/", cta: "View Careers" }, { title: "Have a pricing question?", body: "Tiers, what's included, and what affects your quote.", href: "/pricing/", cta: "See Pricing" }, ]; const CONTACT_FAQS = [ { q: "I have a technical question, not a sales question - is this still the right form?", a: "Yes - the same form reaches the team directly regardless of what the question is about. Mention it's technical and we'll route it correctly on our end.", }, { q: "Can I request a specific feature instead of asking a general question?", a: "Yes - that's genuinely useful to us. See how we decide what to build on our About page.", }, { q: "How do I apply for a job?", a: "Through our Careers page directly - it has a working \"Apply via Email\" link for our current opening.", }, ]; function ContactPage() { useDocumentMeta( "Contact - SkelBiz Manufacturing Operations Platform", "Get in touch with SkelBiz about your manufacturing or processing operation - sales, purchase, inventory, and production workflow automation." ); return ( <>
Contact

Let's talk about your operation.

Whether you're ready for a demo or just have a question about how a module works, the form here reaches our team directly - we respond ourselves, not through a ticket queue.

{AFTER_YOU_REACH_OUT.map((item) => (

{item.title}

{item.body}

))}

Other ways to reach us

{OTHER_WAYS.map((w) => (

{w.title}

{w.body}

{w.cta} →
))}

Frequently asked

{CONTACT_FAQS.map((item) => (

{item.q}

{item.a}

))}
); }