managarten/apps/wisekeep/apps/web/src/routes/+layout.svelte
Till-JS e3eae2cb2c feat(wisekeep): add mana-core authentication to web app
- 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>
2025-11-28 21:30:40 +01:00

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>