generated from n1md7/three-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<base href="%GAME_BASE_URL%" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="theme-color" content="#000000" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="GameBoy Emulator | 🕹️" />
<meta property="og:description" content="%GAME_DESCRIPTION%" />
<meta property="og:image" content="https://github.com/n1md7/game-boy/assets/6734058/7cf00b96-e876-45b0-b063-642a64197477" />
<meta property="og:url" content="%GAME_BASE_URL%" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="GameBoy Emulator | 🕹️" />
<meta name="twitter:description" content="%GAME_DESCRIPTION%" />
<meta
name="twitter:image"
content="https://github.com/n1md7/game-boy/assets/6734058/7cf00b96-e876-45b0-b063-642a64197477"
/>
<script type="module" src="./node_modules/js-dos/dist/js-dos.js"></script>
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css" />
<title>GameBoy Emulator | 🕹️</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script type="module" src="./src/ui/index.tsx"></script>
</body>
</html>