-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
25 lines (25 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<title>Wordle</title>
<meta name="apple-mobile-web-app-title" content="Wordle">
<meta name="application-name" content="Wordle">
<meta property="description" content="Guess the hidden word in 6 tries. Unlimited puzzle. A duplication of nytimes wordle game">
<meta property="og:title" content="Wordle - A word game">
<meta property="og:url" content="https://wordle.aelita.me/">
<meta property="og:description" content="Guess the hidden word in 6 tries. Unlimited puzzle">
<script>
(() => {
const obj = JSON.parse(localStorage.getItem('dark-mode'))
obj?.state?.darkMode && document.documentElement.classList.toggle('dark', true)
})();
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>