Files
web-app-launcher/src/routes/+page.svelte
T
alexei.dolgolyov cf6bde238c feat(mvp): phase 1 - project scaffolding & tooling
Initialize SvelteKit project with Svelte 5, TypeScript strict, Tailwind CSS v4,
shadcn-svelte, Prisma + SQLite, Vitest, ESLint, Prettier. Add Docker multi-stage
build, docker-compose, and Gitea Actions CI pipeline.
2026-03-24 19:53:06 +03:00

12 lines
308 B
Svelte

<script lang="ts">
// Placeholder — replaced in Phase 5 with the board layout
</script>
<svelte:head>
<title>Web App Launcher</title>
</svelte:head>
<main class="flex min-h-screen items-center justify-center bg-background text-foreground">
<h1 class="text-4xl font-bold">Web App Launcher</h1>
</main>