mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 23:46:42 +02:00
- Add auth dependencies (@manacore/shared-auth, shared-auth-ui, shared-branding, shared-ui) - Create auth store with Svelte 5 runes for state management - Add login, register, and forgot-password pages using shared auth UI - Implement protected routes with auth check and redirect - Add AppSlider component for auth pages - Update routing structure with dashboard route - Fix API client to use dynamic env import 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
150 B
Svelte
9 lines
150 B
Svelte
<script lang="ts">
|
|
import '../app.css';
|
|
|
|
let { children } = $props();
|
|
</script>
|
|
|
|
<div class="min-h-screen bg-gray-50">
|
|
{@render children()}
|
|
</div>
|