// SolutionExtras: optional sections that add depth to specific pages. // Use-case grid, integrations strip, mini-testimonial, onboarding timeline. // Use-case grid: shows 3-6 concrete scenarios with role + scenario + outcome const SolUseCases = ({ kicker, title, lead, items }) => (
{kicker && (
{kicker}
)}

{title}

{lead &&

{lead}

}
{items.map((u,i)=>(
{u.role}
{u.scenario}
{u.outcome}
{u.metric && (
{u.metric}
)}
))}
); // Integrations strip: 4-row tag cloud of supported tools const SolIntegrations = ({ title, lead, tools }) => (

{title}

{lead &&

{lead}

}
{tools.map((t,i)=>(
{t}
))}
); // Mini-testimonial: single quote, attributed const SolQuote = ({ quote, author, role }) => (
{quote}
{author.split(' ').map(n=>n[0]).join('').slice(0,2)}
{author}
{role}
); // Onboarding timeline: numbered steps with day markers const SolOnboarding = ({ kicker, title, steps }) => (
{kicker && (
{kicker}
)}

{title}

{steps.map((s,i)=>(
{s.when}
{i+1}
{s.title}
{s.body}
))}
); window.SolUseCases = SolUseCases; window.SolIntegrations = SolIntegrations; window.SolQuote = SolQuote; window.SolOnboarding = SolOnboarding;