mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 09:53:40 +02:00
- Add Context app icon (sky blue document/knowledge SVG) - Add Context to MANA_APPS registry with descriptions (DE/EN) - Add Context app URL mapping (dev: 5192, prod: context.manacore.app) - Add ContextLogo Svelte component - Add 'context' and 'mukke' to AppId type Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
276 B
Svelte
13 lines
276 B
Svelte
<script lang="ts">
|
|
import AppLogo from '../AppLogo.svelte';
|
|
|
|
interface Props {
|
|
size?: number;
|
|
color?: string;
|
|
class?: string;
|
|
}
|
|
|
|
let { size = 55, color, class: className = '' }: Props = $props();
|
|
</script>
|
|
|
|
<AppLogo app="context" {size} {color} class={className} />
|