-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="preconnect" href="https://image.tmdb.org/">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<meta name="theme-color" content="#000000" />
<title>Ben's Years in Movies</title>
<meta name="description" content="An interactive look at movies I watched over the years" />
<meta property="og:title" content="Ben's Years in Movies" />
<meta property="og:description" content="An interactive look at movies I watched over the years" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://movies.benhiller.com/" />
<!-- og:image needs to be an absolute URL -->
<meta property="og:image" content="https://movies.benhiller.com/ogimg.jpg" />
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>