re-voice/site/red-team-shadow-dossiers/components/Disclaimer.tsx

18 lines
980 B
TypeScript

import React from 'react';
export const Disclaimer: React.FC = () => (
<div id="disclaimer" className="rounded-lg border hairline bg-white p-5">
<div className="flex items-center justify-between gap-3 mb-3">
<span className="mono text-[11px] uppercase tracking-wide text-slate-500">Legal notice</span>
<span className="inline-flex items-center rounded-full border hairline px-2.5 py-1 mono text-[11px] text-slate-600">
Satire / parody
</span>
</div>
<p className="text-sm leading-relaxed text-slate-700">
This site contains satirical critical commentary. The Shadow Dossiers are performance art intended to highlight
systemic issues in governance, compliance, and security tooling. Nothing here is presented as a statement of fact
about any specific organization. Verification artifacts (hashes, traces, evidence index) are provided to support
reproducibility of the published materials.
</p>
</div>
);