Files
martials.no/src/components/badge/Badge.astro
Martin Berg Alstad 54db411930
Some checks failed
Build and deploy website / build (push) Failing after 22s
More style changes, removed test projects, favicon
- Fix missing aria-labels
- Fix breadcrumbs on specific projects
- Removed uses from NavBar
- Center image on project page
- Colour link on project page
- Initial README

Signed-off-by: Martin Berg Alstad <git@martials.no>
2025-02-15 19:29:06 +01:00

9 lines
135 B
Plaintext

---
interface Props {
tag: string
}
const { tag } = Astro.props
---
<div class="badge badge-outline !text-cat-lavender">{tag}</div>