// Bespoke SVG artwork for Webever's Digital Services line
// (complementary to the AI product families in solution-art.jsx)
const ServiceArt = {
// 01 — Web Development
// Visual: browser window with code editor + live preview, brand-red accent
WebDev: ({ color }) => (
),
// 02 — Digital Marketing
// Visual: funnel with audience → conversions, growth chart + channel chips
Marketing: ({ color }) => (
),
// 03 — Graphic Design
// Visual: brand sheet — logo mark, palette swatches, type sample
GraphicDesign: ({ color }) => (
),
// 04 — eCommerce & CMS
// Visual: product grid + storefront with CMS edit handles
Ecommerce: ({ color }) => (
),
// 05 — All IT Service Bundle
// Visual: stack of service tiles with the bundle wrapper highlighting them
ITBundle: ({ color }) => (
),
// 06 — Mobile App Development
// Visual: phone mockup + tablet + responsive layouts
MobileApp: ({ color }) => (
),
};
window.ServiceArt = ServiceArt;