mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 22:39:40 +02:00
- Add SkillTreeLogo to shared-branding (emerald green theme) - Add login, register, forgot-password pages using shared-auth-ui - Initialize authStore in layout alongside skillStore - Add shared-auth-ui, shared-i18n, shared-branding dependencies - German translations as default Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
278 B
Svelte
13 lines
278 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="skilltree" {size} {color} class={className} />
|