mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-01-13 13:01:02 +00:00
feat: add credits
This commit is contained in:
parent
b8fb535641
commit
897acf27de
3 changed files with 28 additions and 0 deletions
8
src/lib/credits/actor.svelte
Normal file
8
src/lib/credits/actor.svelte
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<script lang="ts">
|
||||
export let actor: string;
|
||||
export let role: string;
|
||||
</script>
|
||||
|
||||
<div>
|
||||
{role} - {actor}
|
||||
</div>
|
||||
|
|
@ -12,6 +12,7 @@
|
|||
<NavLink href="/#intro" text="Einführung" />
|
||||
<NavLink href="/#heroes" text="Unsere Helden" />
|
||||
<NavLink href="/#listen" text="Hörprobe" />
|
||||
<NavLink href="/credits" text="Besetzung" />
|
||||
<NavLink href="/buy" text="Shop" />
|
||||
</ul>
|
||||
</nav>
|
||||
|
|
|
|||
19
src/routes/credits.svelte
Normal file
19
src/routes/credits.svelte
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<script lang="ts">
|
||||
import Actor from "$lib/credits/actor.svelte";
|
||||
</script>
|
||||
|
||||
<h2 style="text-lg">Besetzung</h2>
|
||||
|
||||
<Actor role="Beyron Ladisla" actor="Nico Gerloff" />
|
||||
<Actor role="Blue" actor="Lina Schmidt" />
|
||||
<Actor role="Tam" actor="Vanessa Martens" />
|
||||
<Actor role="Erzähler" actor="xxx" />
|
||||
<Actor role="Madam Jolie" actor="Josephine Steckenmesser" />
|
||||
<Actor role="Bantam" actor="Timon Fuchs" />
|
||||
<Actor role="Soldat Gundolf Stock" actor="Marian Falk" />
|
||||
<Actor role="Offizier Delgado" actor="Julian Tölle" />
|
||||
<Actor role="Die Rechte Hand des Königs" actor="Julian Tölle" />
|
||||
<Actor role="Der König" actor="Timon Fuchs" />
|
||||
<Actor role="Vorsitzender der Handelsgilde" actor="Nico Gerloff" />
|
||||
<Actor role="Bruder Jotus" actor="Marius Freese" />
|
||||
<Actor role="Schreiberling" actor="Marius Freese" />
|
||||
Loading…
Add table
Add a link
Reference in a new issue