>
);
}
const INDUSTRIES = [
{t:'Cell and gene therapy', img:'dna-gene-editing.jpg', d:'Advanced therapy development and release.'},
{t:'Biotech and vaccines', img:'scientists-sample-analysis.jpg', d:'Manufacturing performance and risk.'},
{t:'Medical devices', img:'cleanroom-inspection.jpg', d:'Device development and commercialization.'},
{t:'Life science robots', img:'surgical-robot.jpg', cross:true, d:'Robotic and automated systems.'},
];
const INDUSTRY_SLIDES = [
{t:'Cell and gene therapy', img:'dna-gene-editing.jpg'},
{t:'Biotech and vaccines', img:'scientists-sample-analysis.jpg'},
{t:'Medical devices', img:'cleanroom-inspection.jpg'},
{t:'Life science robots', img:'surgical-robot.jpg', cross:true},
];
// §6 TRUST AND FIT (merged) — built for the way you are audited (Site Brief 02 v1.1).
// Industries (white axis) and Situations (link to domain pages) kept visually distinct.
const TRUST_INDUSTRIES = ['Cell and Gene Therapy', 'Biotech and Vaccines', 'Medical Devices', 'Life Science Robots'];
const TRUST_SITUATIONS = [
{t:'Product Development', href:'/product-development/'},
{t:'Quality Improvement', href:'/quality-improvement/'},
{t:'Investigations', href:'/investigations/'},
];
function TrustAndFit() {
return (
Trust and fit
Built for the way you are audited.
Every piece of governed knowledge is verified by a qualified person and traceable to its source. It
extends the same discipline you already trust for your data to the knowledge built on it. Every result
is verified before it counts. The human stays in command.
);
}
// §6 THE PROOF — earned proof replaces the logo wall (KG Rebuild Spec v1.7). No logos.
function Proof() {
const strip = ['Since 2014', 'Regulated life sciences', 'Human in command'];
return (
Proof
Twelve years. Clients who came for the visual language and stayed.
Once knowledge is visible, true, and traceable, work moves faster and results grow more reliable. That
is why clients stay.
{strip.map((s, i) => (
{i > 0 && }
{s}
))}
);
}
// §7 THE BRIDGE UP — styled as a dark navy AI box (matches the home "destination" card).
function Handoff() {
return (
The bridge up
The foundation AI runs on.
Governed knowledge is what makes AI safe to deploy in regulated work. When you are ready, the same
foundation becomes executable, with results you can defend.
);
}
// §8 THE CLOSE — Diagnostic defined (locked, same verbatim as Home close), gold CTA.
function FinalCTA() {
return (
Start with a Diagnostic.
The Diagnostic is how Minerva begins. We walk your process, see where your knowledge stands, and find
the gaps and the openings. Then we build a working slice on your own knowledge with your team, the piece
that delivers the most value for your objectives. You leave with a map, a working proof, and an ROI
projection for the path forward.
of the eight core terms.
// Copy is verbatim from the Key Terms brief; the matching JSON-LD lives in the
// page . Light theme to stay consistent with the rest of the KG page.
// ============================================================================
const KEY_TERMS = [
{term:'Visual-Digital Knowledge™ (VDK)', def:'Knowledge made legible to people and machines at once, visual for humans, digital for AI, human-verified. Minerva’s core output.'},
{term:'The Minerva Way', def:'Minerva’s method for turning scattered data, documents, and expertise into compliant, executable knowledge for regulated life sciences.'},
{term:'Knowledge Execution Layer', def:'The compliant, AI-ready layer between fragmented life-sciences data and the humans, AI agents, and robots that act on it.'},
{term:'Executable Knowledge', def:'Knowledge structured to be acted on by a person, AI agent, or robot, not just stored or read.'},
{term:'Knowledge Management', def:'The human and process discipline Minerva was built on. It turns disconnected documents, data, and expertise into governed knowledge, and today is one element of the knowledge execution layer rather than the whole of what Minerva delivers.'},
{term:'Risk Management', def:'Reducing decision subjectivity through visual process mapping and structured risk assessment, aligned with ICH Q9(R1) and ISO 14971.'},
{term:'Context', def:'Engineered information that makes knowledge safe for AI agents and robots to act on; Minerva’s third element after Knowledge and Risk.'},
{term:'AI-Ready Knowledge', def:'Knowledge that is structured, governed, and human-verified so AI can use it reliably in regulated environments.'},
];
function KeyTerms() {
return (
Key Terms
{KEY_TERMS.map(t => (
{t.term}
: {t.def}
))}
);
}
// Unified footer IA — one model across every Minerva page (KG + Compliant AI Readiness + splash).
// Paths here are relative to the KG pages folder (knowledge-governance/Homepage 2.2/):
// KG pages are local; firm-level + CAIR pages sit two levels up.
const FOOTER_COLS = [
{ title:'Explore', links:[
['Knowledge Execution', '../..//home/'],
['Knowledge Governance', '/knowledge-governance/'],
['Compliant AI Readiness', '../..//compliant-ai-readiness/'],
]},
{ title:'Knowledge Governance', links:[
['Product Development', '/product-development/'],
['Quality Improvement', '/quality-improvement/'],
['Investigations', '/investigations/'],
['Visualization', '/visualization/'],
['Digitalization', '/digitalization/'],
['Knowledge Management', '/knowledge-management/'],
['Risk Management', '/risk-management/'],
['Industries', '/industries/'],
]},
{ title:'Compliant AI Readiness', links:[
['The Method', '../..//method/'],
['Mingi', '../..//mingi/'],
['Products', '../..//products/'],
['By Function', '../..//by-function/'],
]},
{ title:'The Firm', links:[
['About Minerva', 'https://minervakrm.com'],
['Our Team', '/about-minerva/'],
['Blog', '/blog/'],
['Start a Diagnostic', '/start-a-diagnostic/'],
]},
];
function Footer() {
return (
);
}
function FooterCol({title, links}) {
return (