Create src/components/ClinicalFooter.tsx
Browse files
src/components/ClinicalFooter.tsx
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React from 'react';
|
| 2 |
+
|
| 3 |
+
const ClinicalFooter: React.FC = () => {
|
| 4 |
+
return (
|
| 5 |
+
<footer className="w-full bg-[#020617] border-t border-slate-800 p-8 mt-10">
|
| 6 |
+
<div className="max-w-6xl mx-auto space-y-6">
|
| 7 |
+
<div className="flex flex-col md:flex-row justify-between items-start md:items-center gap-4">
|
| 8 |
+
<div>
|
| 9 |
+
<h4 className="text-[10px] font-black uppercase tracking-[0.3em] text-gemini-500">
|
| 10 |
+
System Architecture
|
| 11 |
+
</h4>
|
| 12 |
+
<p className="text-[10px] font-bold text-slate-500 uppercase tracking-widest mt-1">
|
| 13 |
+
Abyssinia Intelligence v15.0.0-Stable | Clinical AI Architect: Dawit
|
| 14 |
+
</p>
|
| 15 |
+
</div>
|
| 16 |
+
<div className="flex gap-4">
|
| 17 |
+
<span className="px-3 py-1 bg-slate-900 border border-slate-800 rounded text-[9px] font-black uppercase text-slate-400">
|
| 18 |
+
Research Tier
|
| 19 |
+
</span>
|
| 20 |
+
<span className="px-3 py-1 bg-slate-900 border border-slate-800 rounded text-[9px] font-black uppercase text-slate-400">
|
| 21 |
+
Encrypted Local Vault
|
| 22 |
+
</span>
|
| 23 |
+
</div>
|
| 24 |
+
</div>
|
| 25 |
+
|
| 26 |
+
<div className="pt-6 border-t border-slate-800/50">
|
| 27 |
+
<p className="text-[9px] leading-relaxed text-slate-600 uppercase font-medium tracking-wider text-justify">
|
| 28 |
+
NOTICE: THIS SYSTEM IS INTENDED AS A SUPPLEMENTAL ANALYTIC TOOL. IT DOES NOT ESTABLISH A
|
| 29 |
+
DOCTOR-PATIENT RELATIONSHIP. THERAPEUTIC RECOMMENDATIONS ARE DERIVED FROM PUBLICLY
|
| 30 |
+
AVAILABLE MOLECULAR DATA AND SHOULD NOT BE IMPLEMENTED WITHOUT RIGOROUS CLINICAL
|
| 31 |
+
VALIDATION. THE TOXICITY FORECASTS ARE PREDICTIVE ESTIMATIONS AND MAY NOT REFLECT
|
| 32 |
+
INDIVIDUAL PATIENT OUTCOMES.
|
| 33 |
+
</p>
|
| 34 |
+
</div>
|
| 35 |
+
</div>
|
| 36 |
+
</footer>
|
| 37 |
+
);
|
| 38 |
+
};
|
| 39 |
+
|
| 40 |
+
export default ClinicalFooter;
|