diff --git a/frontend/src/lib/components/ContributorStack.svelte b/frontend/src/lib/components/ContributorStack.svelte
new file mode 100644
index 00000000..0feeb237
--- /dev/null
+++ b/frontend/src/lib/components/ContributorStack.svelte
@@ -0,0 +1,38 @@
+
+
+{#if contributors.length === 0}
+
+{:else}
+
+ {#each contributors as actor, i (actor.name ?? actor.initials + i)}
+
+ {actor.initials}
+
+ {/each}
+ {#if hasMore}
+
+ …
+
+ {/if}
+
+{/if}