-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
50 lines (48 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>React TV Player Demo</title>
<meta
name="description"
content="A demo of the ReactTVPlayer component that can run on big-screen TV devices, with customisable UI and arrow key navigation. It can play a variety of URLs such as YouTube, SoundCloud, HLS/Dash streams and mp4 file paths. Packaged as an npm library for easy integration."
/>
<meta property="og:title" content="ReactTVPlayer Demo" />
<meta
name="twitter:image:src"
content="https://repository-images.githubusercontent.com/688997852/cc39ebd0-f663-4715-b502-eccb06cc4e57"
/>
<meta name="twitter:site" content="@github" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="React TV Player Demo" />
<meta
name="twitter:description"
content="A demo of the ReactTVPlayer component that can run on big-screen TV devices, with customisable UI and arrow key navigation. It can play a variety of URLs such as YouTube, SoundCloud and HLS/Dash streams..."
/>
<meta
property="og:image"
content="https://repository-images.githubusercontent.com/688997852/cc39ebd0-f663-4715-b502-eccb06cc4e57"
/>
<meta
property="og:image:alt"
content="A React media player component that can run on big-screen TV devices, with customisable UI and arrow key navigation. It can play a variety of URLs such as YouTube, SoundCloud and HLS/Dash streams..."
/>
<meta property="og:site_name" content="GitHub" />
<meta property="og:type" content="object" />
<meta property="og:title" content="React TV Player Demo" />
<meta
property="og:url"
content="https://lewhunt.github.io/react-tv-player/"
/>
<meta
property="og:description"
content="A demo of the ReactTVPlayer component that can run on big-screen TV devices, with customisable UI and arrow key navigation. It can play a variety of URLs such as YouTube, SoundCloud and HLS/Dash streams..."
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>