-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (34 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lex’ Slot Machine (Vue JS)</title>
<link rel="icon" href="/white-screen-icon.png" />
<link rel="manifest" href="/manifest.json" />
<meta charset="utf-8" />
<meta
name="description"
content="An open source slot machine including a bot, written in Vue (Vue 3 using their options API),
Typescript and PostCSS with Vite as our build and dev tool."
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no" />
<meta property="og:url" key="og:url" content="slotmachine.hofmeijer.me" />
<meta property="og:type" key="og:type" content="website" />
<meta
property="og:title"
key="og:title"
content="An open source slot machine including a bot, written in Vue (Vue 3 using their options API), Typescript and PostCSS with Vite as our build and dev tool."
/>
<meta property="og:image" key="og:image" content="/og-image.png" />
</head>
<body>
<noscript>
<strong
>We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it
to continue.</strong
>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>