All checks were successful
CI / Unit & Component Tests (push) Successful in 4m34s
CI / OCR Service Tests (push) Successful in 27s
CI / Backend Unit Tests (push) Successful in 5m1s
CI / fail2ban Regex (push) Successful in 47s
CI / Semgrep Security Scan (push) Successful in 23s
CI / Compose Bucket Idempotency (push) Successful in 1m11s
19 lines
425 B
Svelte
19 lines
425 B
Svelte
<script lang="ts">
|
|
import { m } from '$lib/paraglide/messages.js';
|
|
|
|
interface Props {
|
|
note: string;
|
|
}
|
|
|
|
let { note }: Props = $props();
|
|
</script>
|
|
|
|
<div
|
|
role="note"
|
|
aria-label={m.journey_interlude_aria_label()}
|
|
class="my-4 rounded-r-sm border-l-2 border-journey-border bg-journey-tint py-2 pr-3 pl-3"
|
|
>
|
|
<!-- plaintext — do NOT use {@html} here -->
|
|
<p class="text-base leading-relaxed text-ink italic">{note}</p>
|
|
</div>
|