27 lines
924 B
HTML
27 lines
924 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/tt_logo.ico" />
|
|
<link rel="icon" type="image/png" href="/tt_logo.png" />
|
|
<link rel="icon" type="image/svg+xml" href="/tt_logo.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>TTRPG Utility App</title>
|
|
<meta
|
|
name="description"
|
|
content="Professional utilities for tabletop RPG players and game masters"
|
|
/>
|
|
<meta name="theme-color" content="#f7f8fa" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|