22 lines
862 B
HTML
22 lines
862 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#0e1a2e" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
<meta property="og:title" content="Initiative Tracker" />
|
|
<meta property="og:description" content="D&D combat initiative tracker" />
|
|
<meta property="og:image" content="https://initiative.dostulata.rocks/icon-512.png" />
|
|
<meta property="og:url" content="https://initiative.dostulata.rocks/" />
|
|
<meta property="og:type" content="website" />
|
|
<title>Initiative Tracker</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|