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>
This commit is contained in:
Till-JS 2025-11-25 13:48:24 +01:00
parent fcf3a344b1
commit c638a7ffee
155 changed files with 22622 additions and 348 deletions

View file

@ -0,0 +1 @@
@import 'tailwindcss';

View file

@ -0,0 +1,12 @@
<!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" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>

View file

@ -0,0 +1,9 @@
<script lang="ts">
import '../app.css';
let { children } = $props();
</script>
<div class="min-h-screen bg-gray-50 dark:bg-gray-900">
{@render children()}
</div>

View file

@ -0,0 +1,23 @@
<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>