diff --git a/packages/shared-branding/src/app-icons.ts b/packages/shared-branding/src/app-icons.ts
index 8ed76a715..3743d24e7 100644
--- a/packages/shared-branding/src/app-icons.ts
+++ b/packages/shared-branding/src/app-icons.ts
@@ -147,6 +147,11 @@ export const APP_ICONS = {
events: svgToDataUrl(
``
),
+ who: svgToDataUrl(
+ // Theatre mask silhouette in front of a question mark — references
+ // the "guess who's behind the disguise" mechanic. Purple gradient.
+ ``
+ ),
} as const;
export type AppIconId = keyof typeof APP_ICONS;
diff --git a/packages/shared-branding/src/mana-apps.ts b/packages/shared-branding/src/mana-apps.ts
index 1523ed011..0b3da0578 100644
--- a/packages/shared-branding/src/mana-apps.ts
+++ b/packages/shared-branding/src/mana-apps.ts
@@ -700,6 +700,23 @@ export const MANA_APPS: ManaApp[] = [
status: 'beta',
requiredTier: 'guest',
},
+ {
+ id: 'who',
+ name: 'Who',
+ description: {
+ de: 'Errate wer ich bin',
+ en: 'Guess who I am',
+ },
+ longDescription: {
+ de: 'Chatte mit einer historischen Persönlichkeit. Eine KI verkörpert sie ohne den Namen zu verraten — du musst durch geschickte Fragen herausfinden, mit wem du sprichst. Vier Decks: Historisch, Frauen der Geschichte, Antike, Erfinder & Pioniere.',
+ en: 'Chat with a historical figure. An AI roleplays them without revealing their name — you have to figure out who you are talking to. Four decks: Historical, Women in History, Antiquity, Inventors & Pioneers.',
+ },
+ icon: APP_ICONS.who,
+ color: '#a855f7',
+ comingSoon: false,
+ status: 'beta',
+ requiredTier: 'beta',
+ },
];
/**