// Bespoke SVG artwork for each Webever product family.
// Each illustration is a self-contained scene — abstract, brand-colored,
// suggestive of the product's actual mechanic (chat thread, pipeline, doc,
// flow graph, people, ledger).
// Palette stays consistent: primary = it.color; supports = brand red/yellow/green/blue.
const SolutionArt = {
// 01 — AI Chatbots & Conversational AI
// Visual: chat bubbles + waveform, message threads from many sources converging into an agent
Chatbots: ({ color }) => (
),
// 02 — Startup Management Systems (CRM + Ops)
// Visual: pipeline kanban columns with deals + a sparkline header
StartupOps: ({ color }) => (
),
// 03 — Smart Document Processing
// Visual: stack of documents with extraction box highlighting fields
Documents: ({ color }) => (
),
// 04 — Business Workflow Automation
// Visual: node graph with branching flow + triggers
Workflow: ({ color }) => (
),
// 05 — HRMS — AI Employee Lifecycle
// Visual: pipeline of people avatars across lifecycle stages with progress
HRMS: ({ color }) => (
),
// 06 — AI-Enabled ERP
// Visual: ledger / 3D cube layers (finance, inventory, ops) + forecast line
ERP: ({ color }) => (
),
};
window.SolutionArt = SolutionArt;