-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathindex.html
31 lines (27 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>pastes</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#d2a8ff" />
<meta name="description" content="a simple pastebin." />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="pastes" />
<meta name="twitter:description" content="a simple pastebin." />
<meta name="twitter:image" content="https://pastes.dev/assets/logo256.png" />
<meta property="og:title" content="pastes" />
<meta property="og:description" content="a simple pastebin." />
<meta property="og:type" content="product" />
<meta property="og:image" content="https://pastes.dev/assets/logo256.png" />
<meta property="og:url" content="https://pastes.dev" />
<link rel="icon" href="/favicon.ico" />
<link rel="shortcut icon" href="/assets/logo512.png" sizes="512x512" type="image/png">
<link rel="apple-touch-icon" href="/assets/logo256.png" />
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>