feat(frontend): bootstrap React + Vite + Tailwind + Router + Layout

This commit is contained in:
2026-05-20 21:10:27 +02:00
parent 4a382b5dd7
commit 480ee15df9
12 changed files with 3243 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
<!doctype html>
<html lang="nl" class="h-full">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flashcards</title>
</head>
<body class="h-full bg-slate-50 text-slate-900 dark:bg-slate-950 dark:text-slate-100">
<div id="root" class="h-full"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>