9 lines
217 B
Plaintext
9 lines
217 B
Plaintext
---
|
|
import {t} from "astro-i18n";
|
|
---
|
|
|
|
<div class="bg-yellow-100 border-l-4 border-yellow-500 text-yellow-700 p-4" role="alert">
|
|
<p class="font-bold">{t("warning.title")}</p>
|
|
<p>{t("warning.text")}</p>
|
|
</div>
|