// IndustriesPage.jsx — Industries We Serve (per Minerva Industries Page Build Spec v1.1)
// Consolidates four near-duplicate industry pages into one page, spined on the
// regulatory-rigor axis (RUO to Sustained). Segment-specific copy only; routes out
// to domains and disciplines rather than restating practice copy.
// Global rules: no em-dashes, American spelling, no services/consulting language,
// compliant describes the discipline, human in command.
const SPECTRUM = 'linear-gradient(90deg,#D51C29,#E0542A,#E0A230,#F2D12E,#8FBF3F,#069848,#1AA89A,#3FB1E5,#1C4DA1,#4A3BA8,#8B2CA8,#D20F8C)';
const KG_HOME = '/knowledge-governance/';
// Recurring "the Minerva way" strip.
function MinervaWayStrip({onDark}) {
return (
the Minerva way
);
}
// ---- A. HERO BAND — title, tagline, the Minerva way strip ----
function IndHero() {
return (
Industries We Serve
Industries We Serve
One governed knowledge layer, across the segments where compliance is hardest.
);
}
// ---- B. THE CLAIM — range across regulatory rigor, not a market list ----
function TheClaim() {
return (
The claim
Where knowledge execution is hardest, and most valuable.
Minerva works across four life-science segments and, within each, across the full range of regulatory
rigor. The same governed knowledge layer holds whether the work is research use only or sustained
commercial manufacturing. That range is the proof of regulated depth.
);
}
// ---- C. THE DIFFERENTIATOR — the GxP rigor ladder (RUO/GLP gold, GCP blue, GMP green) ----
const RIGOR = [
{tag:'RUO', name:'Research Use Only', color:'#E0A230', line:'Pre-regulatory work, with the governed foundations laid early so nothing has to be rebuilt later.'},
{tag:'GLP', name:'Good Laboratory Practice', color:'#E0A230', line:'Nonclinical safety studies, with data integrity and traceability built in from the first study.'},
{tag:'GCP', name:'Good Clinical Practice', color:'#3FB1E5', line:'Patient exposure begins, and governed knowledge keeps trials clean, auditable, and stable.'},
{tag:'GMP', name:'Good Manufacturing Practice', color:'#069348', line:'Marketed product under full regulatory weight, monitored and continuously improved.'},
];
function RigorBand() {
return (
The differentiator
The GxP rigor ladder, from RUO to GMP.
{/* Ascending GxP rigor ladder — gold (RUO, GLP) to blue (GCP) to green (GMP) */}
{RIGOR.map((r) => {
return (
{r.tag}
{r.name}
{r.line}
);
})}
The same knowledge layer carries across all four. That is what makes it defensible.
);
}
// ---- D. FOUR SEGMENT SECTIONS — segment-specific copy + routing only ----
// Routes point to the real domain and discipline pages (now navigable via the
// Execution Areas menu, per Industries spec v1.1 / KG build spec v1.8). "The four
// disciplines" routes to the foundation model on the home, which has no single page.
const CAP = KG_HOME + '#capabilities';
const FND = KG_HOME + '#foundation';
const PD = '/product-development/';
const QI = '/quality-improvement/';
const INV = '/investigations/';
const RM = '/risk-management/';
const SEGMENTS = [
{
id:'cell-and-gene-therapy', name:'Cell and Gene Therapy', img:'dna-gene-editing.jpg',
copy:'Living, often patient-specific products with short shelf life, made in small batches that scale out rather than up. The work spans the ATMP lifecycle: apheresis collection, activation, transduction, expansion, formulation, and cryopreservation, with potency, purity, and viability testing. Variability is the enemy, and every batch matters.',
routes:[['Product Development',PD],['Investigations',INV],['The four disciplines',FND]],
},
{
id:'biotech-and-vaccines', name:'Biotech and Vaccines', img:'scientists-sample-analysis.jpg',
copy:'High-volume biopharmaceutical manufacturing, often spread across CMOs, CDMOs, and testing laboratories. The work centers on process characterization, scale-up, and tech transfer across external operations, with ERP, MES, and quality systems carrying the load. Handoffs are where knowledge is lost.',
routes:[['Quality Improvement',QI],['Product Development',PD],['Investigations',INV]],
},
{
id:'medical-devices', name:'Medical Devices', img:'cleanroom-inspection.jpg',
copy:'Hardware, software, and manufacturing that must align under design controls and ISO 13485. The work is right-the-first-time development: verification and validation, design history, and requirements and risk traceability, through eQMS to commercialization. Traceability from design input to released device is the whole game.',
routes:[['Product Development',PD],['Quality Improvement',QI],['Investigations',INV]],
},
{
id:'life-science-robots', name:'Life Science Robots', img:'surgical-robot.jpg',
copy:'Robotic and automated systems for diagnostics, procedures, and surgical platforms, where software, hardware, and biology meet. The work is system integration and interface modeling, with risk and control strategy set from the earliest prototype and traceable through verification and validation. Early-stage risk intelligence prevents downstream failure.',
routes:[['Product Development',PD],['Risk Management',RM],['Investigations',INV]],
cross:true,
},
];
function SegmentSection({seg, index}) {
const flip = index % 2 === 1;
const img = (
);
const text = (
);
return (
{flip ? <>{text}{img}> : <>{img}{text}>}
);
}
// ---- E. THE HAND-OFF — one line routing to domains and disciplines ----
function HandOff() {
return (
);
}
// ---- F. CLOSING BAND — outcome line + strip ----
function ClosingBand() {
return (
One foundation, every level of rigor.
);
}
function IndustriesPage() {
return (
<>
{SEGMENTS.map((seg, i) => )}
>
);
}
Object.assign(window, { IndustriesPage });