managarten/apps-archived/wisekeep/apps/web/src/lib/components/WisekeepLogo.svelte
Till JS 2eb1a0cd76 chore: archive 25 standalone web apps, move wisekeep to apps-archived
All standalone SvelteKit web apps have been superseded by the unified
ManaCore app (apps/manacore/apps/web). Moved to web-archived/ within
each project to preserve history while removing from active workspace.

Archived: calc, cards, chat, citycorners, contacts, context, guides,
inventar, moodlit, mukke, news, nutriphi, photos, picture, planta,
presi, questions, skilltree, storage, times, zitare, todo, calendar,
uload, memoro

Moved to apps-archived/: wisekeep (not integrated, inactive)

Kept active: manacore (unified), matrix, manavoxel, arcade (separate containers)

Server, landing, and package directories remain active for each project.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-02 20:14:29 +02:00

11 lines
638 B
Svelte

<script lang="ts">
let { size = 48, color = '#8b5cf6' }: { size?: number; color?: string } = $props();
</script>
<svg width={size} height={size} viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<rect width="100" height="100" rx="22" fill={color} />
<circle cx="50" cy="40" r="12" stroke="white" stroke-width="4" fill="none" />
<line x1="50" y1="52" x2="50" y2="72" stroke="white" stroke-width="4" stroke-linecap="round" />
<line x1="38" y1="62" x2="50" y2="72" stroke="white" stroke-width="3" stroke-linecap="round" />
<line x1="62" y1="62" x2="50" y2="72" stroke="white" stroke-width="3" stroke-linecap="round" />
</svg>