18 lines
645 B
HTML
18 lines
645 B
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
||
|
|
<meta name="theme-color" content="#1a1a1a" media="(prefers-color-scheme: dark)" />
|
||
|
|
<meta name="theme-color" content="#fafafa" media="(prefers-color-scheme: light)" />
|
||
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
||
|
|
<link rel="icon" href="/icon-192.png" />
|
||
|
|
<link rel="apple-touch-icon" href="/icon-192.png" />
|
||
|
|
<title>Tefter</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="app"></div>
|
||
|
|
<script type="module" src="/src/main.ts"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|