// SolutionsIndexPage.jsx // // The "/solutions" overview - the counterpart Product already had // (ProductIndexPage.jsx) but Solutions never got: the Navbar's "Solutions" // dropdown and Footer's "Company & Solutions" column both link straight to // the 3 individual solution pages with no landing page tying them // together. Renders the same SOLUTIONS registry (SolutionPage.jsx) rather // than a second hand-written list, same reasoning as Product's index. // // Loaded as a classic (non-module) Babel-transformed script - see // index.html's header comment. const SOLUTION_FIT_GUIDE = [ { question: "You buy raw material and make something new from it", answer: "Manufacturing SMEs", slug: "manufacturing", }, { question: "You transform an input through multiple stages, and yield is the number that matters", answer: "Processing & Converting", slug: "processing", }, { question: "You move goods you didn't make - purchase, warehouse, dispatch", answer: "Distribution & Logistics", slug: "distribution", }, ]; const SOLUTIONS_INDEX_FAQS = [ { q: "What if my business is a mix of these - some manufacturing, some distribution?", a: "That's genuinely common, and it's fine - solutions here describe emphasis, not a rigid category you have to fit into. The underlying platform is the same; which modules you actually enable is scoped on a demo call, not locked in by which page you started on.", }, { q: "Do solutions cost differently from the base platform?", a: "No - there's no separate \"solutions pricing.\" See our Pricing page for the real Core, Production, and Enterprise tiers; a solution page just shows which modules typically matter most for that kind of operation.", }, { q: "Can I see a solution page before requesting a demo?", a: "Yes - each one below is real content, not a lead-gated preview. Read through, then request a demo scoped to what you saw.", }, ]; function SolutionsIndexPage() { useDocumentMeta( "Solutions - SkelBiz Manufacturing Operations Platform", `How SkelBiz fits ${SOLUTIONS.length} kinds of operations - manufacturing, processing, and distribution - each configured around the modules that actually matter for how you run.` ); return ( <>
Solutions

One platform, configured for how you actually operate.

Not {SOLUTIONS.length} different products - the same modules, emphasized differently depending on whether you make, transform, or move goods.

{SOLUTIONS.map((s) => (

{s.name}

{s.tagline}

{s.description}

{s.moduleIds.length} modules typically enabled

See how it works →
))}

Not sure which one fits?

A rough guide, not a rigid category - most real businesses lean toward one.

{SOLUTION_FIT_GUIDE.map((f) => (

{f.question}

{f.answer} →
))}

Frequently asked

{SOLUTIONS_INDEX_FAQS.map((item) => (

{item.q}

{item.a}

))}

Not sure which modules you need either way?

That's exactly what the demo call is for - we'll scope it together.

Request a Demo
); }