managarten/chat/apps/web/src/routes/+page.svelte
Till-JS c638a7ffee feat(chat): integrate chat project into monorepo with full app structure
- Restructure chat as apps/mobile, apps/web, apps/landing, backend
- Add NestJS backend for secure Azure OpenAI API calls
- Remove exposed API key from mobile app (security fix)
- Add shared chat-types package
- Create SvelteKit web app scaffold
- Create Astro landing page scaffold
- Update pnpm workspace configuration
- Add project-level CLAUDE.md documentation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-25 13:48:24 +01:00

23 lines
744 B
Svelte

<script lang="ts">
// Chat web app - main page
</script>
<svelte:head>
<title>ManaChat - AI Chat Assistant</title>
<meta name="description" content="Chat with AI models - GPT-4o, GPT-4o-Mini, and more" />
</svelte:head>
<main class="flex min-h-screen flex-col items-center justify-center p-4">
<div class="text-center">
<h1 class="mb-4 text-4xl font-bold text-gray-900 dark:text-white">ManaChat</h1>
<p class="mb-8 text-lg text-gray-600 dark:text-gray-300">
AI Chat Assistant - Coming Soon
</p>
<div class="rounded-lg bg-blue-100 p-4 dark:bg-blue-900">
<p class="text-blue-800 dark:text-blue-200">
The web application is under development.
Please use the mobile app in the meantime.
</p>
</div>
</div>
</main>