-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (55 loc) · 1.97 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html class="bg-zinc-100 dark:bg-black" lang="en">
<head>
<meta charset="UTF-8" />
<meta
property="description"
content="OMDb is the next best thing to happen in the world of cinema"
/>
<meta
name="twitter:image"
content="https://omdb.d-exclaimation.me/omdb-card.webp"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="OMDb | Open Movie Database" />
<meta
name="twitter:description"
content="OMDb is the next best thing to happen in the world of cinema"
/>
<meta
property="og:image"
content="https://omdb.d-exclaimation.me/omdb-card.webp"
/>
<meta property="og:title" content="OMDb | Open Movie Database" />
<meta
property="og:description"
content="OMDb is the next best thing to happen in the world of cinema"
/>
<meta property="og:url" content="https://omdb.dexclaimation.com/" />
<meta property="og:type" content="article" />
<link rel="icon" href="/favicon.ico" />
<link rel="icon" sizes="16x16" href="/favicon-16x16.png" />
<link rel="icon" sizes="32x32" href="/favicon-32x32.png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css?family=Inter:100,200,300,400,500,600,700,800,900&display=swap"
rel="stylesheet"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover"
/>
<title>OMDb</title>
</head>
<body
class="m-0 min-h-screen min-w-screen overflow-x-hidden bg-zinc-100 p-0 dark:bg-black"
>
<div
class="flex min-h-screen min-w-screen items-center justify-center overflow-x-hidden"
id="root"
></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>