feat(juragankos-app): scaffold chatbot app with Vite + Tailwind + shadcn/ui + router\n\n- Add chat-focused UI with glass effect\n- Add admin login and dashboard pages\n- Configure Tailwind + shadcn, lucide icons\n- Add routing and simple auth stub\n- Include CODEX.md project context

This commit is contained in:
2025-08-10 19:53:38 +07:00
parent 4fe4b13f39
commit 7a14c80eec
27 changed files with 3952 additions and 0 deletions

13
juragankos-app/index.html Normal file
View File

@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JuraganKos App</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>