mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-01-13 13:01:02 +00:00
18 lines
417 B
Svelte
18 lines
417 B
Svelte
<script lang="ts">
|
|
export let name: string;
|
|
export let description: string;
|
|
export let image: string;
|
|
export let mirrored: boolean = false;
|
|
</script>
|
|
|
|
<div class={`flex flex-col md:flex-row ${mirrored && "md:flex-row-reverse"} m-8`}>
|
|
<img src={image} alt={`Grafik vom Charakter ${name}`} class="p-4" />
|
|
|
|
<div>
|
|
<h3 class="text-xl pb-4">{name}</h3>
|
|
|
|
<p>
|
|
{description}
|
|
</p>
|
|
</div>
|
|
</div>
|