// Homepage22.jsx — sections changed by the Minerva 2.2 content brief // Hero (§1, no change vs live) · ProblemBand (§2, new subline) · Foundation (§3, NEW) · OutcomeTiles (§4, 6→4) // Tile icons recreated from the live minervakrm.com colored service tiles (1.75px outline). // investigations = magnifier+pie · product-dev = paired test tubes · // risk-hand = Risk-mgmt hand+rising-chart · knowledge-tree = Knowledge-mgmt hierarchy function LucideIcon({name, size=24, color='var(--minerva-blue)'}) { const paths = { 'investigations': <>, 'product-dev': <>, 'risk-hand': <>, 'knowledge-tree': <>, }; return ( ); } // Review aid: dashed outline + section label when "Highlight what changed" is on function ChangeFrame({on, label, children}) { if (!on) return children; return (
{label}
{children}
); } // ---- §1 HERO — NO CHANGE (matches live site) ---- function Hero() { return (
Faster Smarter Safer

We build the compliant knowledge execution layer for Life Sciences

Minerva transforms your complex technical, quality, and operational data into compliant executable knowledge for smarter decisions by Humans, AI Agents and Robots.

Clinician hand over a patient's hand with a gold digital circuit overlay
); } // ---- §2 PROBLEM BAND — headline kept, subline replaced ---- function ProblemBand({t}) { return (

Most regulated life sciences organizations have information. Few have controlled, executable knowledge.

Minerva converts your data, documents, and SME experience into compliant{' '} Visual‑Digital Knowledge™ — built from three things every regulated decision depends on: Knowledge, Risk, and Context.

); } // ---- §3 FOUNDATION — Knowledge + Risk + Context ---- // Knowledge & Risk = the established (light) business. Context = the AI-era addition, // rendered with cues from the dark-style brief: navy surface, one accent + glow, spectrum // top-rule, a single italic-serif accent word. (See Partner Site - Design Cue Brief.md) const FOUNDATION_COLS = [ {title:'Knowledge Management', ai:false, body:'Convert disconnected documents, data, and SME experience into usable knowledge your teams, systems, and AI tools can actually understand and apply.'}, {title:'Risk Management', ai:false, body:'Reduce subjectivity through visual process mapping, structured assessments, and integrated risk intelligence aligned with ICH Q9(R1) and ISO 14971.'}, {title:'Context', ai:true, body:'Engineer the context that makes your knowledge legible to AI agents and robots — so digital reasoning stays in control, compliant, and human-verified.'}, ]; // hex accent → soft glow rgba (~27% alpha), matching the brief's "46" shadow function giGlow(hex) { const h = hex.replace('#',''); const r = parseInt(h.slice(0,2),16), g = parseInt(h.slice(2,4),16), b = parseInt(h.slice(4,6),16); return `rgba(${r},${g},${b},0.27)`; } function Foundation({t}) { const accent = t.giAccent || '#3FB1E5'; return (
The foundation

Knowledge Risk Context

Minerva has always been a Knowledge and Risk Management firm. The age of{' '} general intelligence{' '} adds one thing — Context. Our Visual‑Digital Methods combine all three: visual for humans, digital for AI, verified by a person before anything becomes executable knowledge.

{FOUNDATION_COLS.map(c => c.ai ? (

{c.title}

AI era

Engineer the context that makes your knowledge legible to AI agents and robots — so digital reasoning stays in control, compliant, and human-verified — the context layer that makes your knowledge AI-ready.

) : (

{c.title}

{c.body}

))}

The result is one governed source of truth — readable by your people and your AI alike.{' '} That's the Minerva Way.

See where we take Visual‑Digital Knowledge further →
); } // ---- §4 OUTCOME TILES — four tiles, one shared neutral-blue treatment ---- const TILES = [ {icon:'investigations.svg', title:'Investigations', desc:'Turn investigations into queryable, executable knowledge — not archived PDFs. Structured root-cause analysis that reduces recurrence, strengthens CAPAs, and keeps the finding usable years later.', twist:'Queryable by your engineers and your AI agents alike — the finding stays usable, not buried.'}, {icon:'product-development.svg', title:'Product Development', desc:'Transform development complexity into visual workflows, traceable requirements, and risk-based execution — so process knowledge survives tech transfer and accelerates product readiness.', twist:'Machine-legible — the same knowledge that trains your people can instruct your agents and robots.'}, {icon:'process-improvement.svg', title:'Process Improvement', desc:'Make processes visible end-to-end, expose variation and waste, and improve them with risk-based, traceable changes that hold.', twist:'Continuously monitored — visual-digital models surface drift before it becomes a deviation.'}, {icon:'quality-improvement.svg', title:'Quality Improvement', desc:'Strengthen quality systems with connected, governed knowledge — fewer repeat deviations, faster CAPAs, and audit-ready traceability aligned with ICH Q9(R1).', twist:'Governed end-to-end — every change traceable and audit-ready for humans and AI.'}, ]; function OutcomeTiles({t}) { const chip = t.twistStyle === 'AI chip'; return (
What we do

This is how Minerva helps teams move with clarity, speed, and low risk

{TILES.map(tile => (

{tile.title}

{tile.desc}

{chip ? (
With AI {tile.twist}
) : (

{tile.twist}

)}
))}
); } Object.assign(window, { LucideIcon, ChangeFrame, Hero, ProblemBand, Foundation, OutcomeTiles });