-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (37 loc) · 1.44 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<title>wordel</title>
<meta
name="description"
content="A beautiful and accessible version of the simple word game we all know and love."
/>
<meta property="og:title" content="wordel" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="A beautiful and accessible version of the simple word game we all know and love."
/>
<meta name="color-scheme" content="dark light" />
<meta name="theme-color" content="#effafc" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#0a0e16" media="(prefers-color-scheme: dark)" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
<script type="module">
(async () => {
if (typeof HTMLDialogElement !== 'function') {
const css = document.createElement('link');
css.href = 'https://unpkg.com/[email protected]/dist/dialog-polyfill.css';
document.head.appendChild(css).rel = 'stylesheet';
await import('https://unpkg.com/[email protected]/dist/dialog-polyfill.js');
dialogPolyfill.registerDialog(document.querySelector('dialog'));
}
})();
</script>
</body>
</html>