-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (56 loc) Β· 2.38 KB
/
index.html
File metadata and controls
57 lines (56 loc) Β· 2.38 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-black-32.png"
media="(prefers-color-scheme: light)"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-white-32.png"
media="(prefers-color-scheme: dark)"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-black-32.png"
/>
<link rel="manifest" href="/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#000000" />
<title>Microkeebs</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
const qrCode = `
βββββββββββββββββββββββββββββββββ
βββββββββββββββββββββββββββββββββ
ββββ βββββ βββ βββββββ βββββ ββββ
ββββ β β βββββββββββ β β ββββ
ββββ βββββ β β β β ββ βββββ ββββ
ββββββββββββ β βββ ββββββββββββββ
βββββ β βββ ββββββ β β ββββββββββ
ββββββββ ββ ββββ βββ βββββββββββ
βββββ βββ β ββββ ββββ β ββ ββββ
ββββββ ββββ βββ β βββ ββββββββ
ββββββββββββββββ β βββ βββββββ
ββββ βββββ βββββ ββ βββ β βββββ
ββββ β β βββ βββ ββββ βββββββ
ββββ βββββ βββ βββ ββ βββββββββββ
βββββββββββββββββββββββββββββββββ
βββββββββββββββββββββββββββββββββ
βββββββββββββββββββββββββββββββββ
`;
console.log(qrCode);
</script>
</body>
</html>