Files
ai-rpg/frontend/index.html

15 lines
473 B
HTML
Raw Normal View History

2026-06-19 11:28:04 +03:00
<!doctype html>
2026-06-20 19:13:05 +03:00
<html lang="en" class="dark">
2026-06-19 11:28:04 +03:00
<head>
<meta charset="UTF-8" />
2026-06-20 19:13:05 +03:00
<link rel="icon" type="image/png" href="/icon.png" />
2026-06-19 11:28:04 +03:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2026-06-20 19:13:05 +03:00
<meta name="description" content="AI-RPG — text RPG with an LLM Game Master." />
<title>AI-RPG</title>
2026-06-19 11:28:04 +03:00
</head>
2026-06-20 19:13:05 +03:00
<body class="bg-bg text-fg">
2026-06-19 11:28:04 +03:00
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>