Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/developer-dossier/llms.txt
Use this file to discover all available pages before exploring further.
ClassificationStamp renders a compact inline badge that mimics the look of a rubber-stamped security classification mark — uppercase monospace text inside a thin colored border with a matching tinted background. It appears throughout the app wherever status or category context is needed at a glance: project cards carry data-source labels, writing article headers display article-type stamps, case study sections use it for methodology tags, and the About page history logs apply it to clearance-level and employment-status indicators.
Props
The stamp label text. Rendered in monospace and forced to uppercase via Tailwind’s
uppercase and tracking-widest utility classes — no manual uppercasing needed at the call site.Controls the color theme applied to the text, border, and background of the stamp. Each variant maps to a single brand color defined in the project’s Tailwind config.
Additional Tailwind utility classes passed directly to the wrapper
div. Use this to adjust spacing, override layout, or layer the stamp inside a flex or grid container.Variant Color Reference
Each variant corresponds to a named color in the project’s Tailwind palette. The badge applies that color to text, border, and a low-opacity background fill (/10 alpha).
| Variant | Color Name | Hex | Applied To |
|---|---|---|---|
lime | Neon Green | #84FF00 | Text, border, bg-lime/10 fill |
magenta | Hot Pink | #FF2BD6 | Text, border, bg-magenta/10 fill |
violet | Purple | #a855f7 | Text, border, bg-violet/10 fill |
cyan | Electric Cyan | #00F5FF | Text, border, bg-cyan/10 fill |
Usage
Text is automatically uppercased by the component’s Tailwind classes (
tracking-widest uppercase). You can pass mixed-case or lowercase strings to text and they will always render as uppercase — no need to shout-case your strings at the call site.