Files
mtg-online-drafter/src/client/index.html
dnviti 8995c3f7e8
All checks were successful
Build and Deploy / build (push) Successful in 1m30s
feat: Add and integrate application favicon to the client.
2025-12-18 01:03:00 +01:00

14 lines
398 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MTG Draft Maker</title>
<link rel="icon" type="image/png" href="/favicon.png" />
</head>
<body class="bg-slate-950 text-slate-50">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>