-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
32 lines (32 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>QR Bouncer</title>
<meta name="title" content="QR Bouncer" />
<meta name="description" content="Get your own bouncing QR code" />
<link rel="stylesheet" href="/styles.css">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png">
<link rel="manifest" href="/assets/site.webmanifest">
<meta property="og:image" content="/assets/banner.png" />
<meta name="theme-color" content="#100e10">
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://qr-bouncer.pages.dev" />
<meta property="twitter:title" content="QR Bouncer" />
<meta
property="twitter:description"
content="Generate your own bouncing QR code."
/>
<meta
property="twitter:image"
content="https://qr-bouncer.pages.dev/assets/banner.png"
/>
<script src="./app.js"></script>
</head>
<body>
<div class="box"></div>
</body>
</html>