mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 21:06:41 +02:00
- Add 24 default moods with various animation types (pulse, wave, candle, disco, etc.) - Implement fullscreen mood view with play/pause, timer, and keyboard controls - Add create mood dialog for custom moods with color picker and animation selection - Implement sequences page with demo sequences and playback functionality - Add MoodCard component with favorite toggle and animations - Integrate with shared-branding (MoodlitLogo, AppId, APP_BRANDING config) - Add i18n support (DE/EN) for all features - Setup auth pages using shared-auth-ui - Add feedback page with shared-feedback-service integration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <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="moodlit" {size} {color} class={className} />
|