mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 16:06:43 +02:00
✨ feat(moodlit): add complete web app with fullscreen moods and sequences
- 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>
This commit is contained in:
parent
ad0051a8fc
commit
b7eeae9590
115 changed files with 8104 additions and 2 deletions
13
apps/moodlit/apps/web/src/app.html
Normal file
13
apps/moodlit/apps/web/src/app.html
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Moodlit</title>
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
<div style="display: contents">%sveltekit.body%</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue