mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-25 06:44:39 +02:00
- 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>
23 lines
744 B
Svelte
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>
|