-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (32 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--==================== FAVICON ====================-->
<link rel="icon" type="image/svg+xml" href="/assets/img/favicon.svg" />
<title>Netflix</title>
<!--========== CSS ==========-->
<link rel="stylesheet" href="/assets/scss/styles.scss" />
<!--================== LINK THUMBNAIL META TAGS ===================-->
<!-- fb & Whatsapp -->
<meta property="og:site_name" content="Netflix React" />
<meta property="og:title" content="Netflix" />
<meta
property="og:description"
content="A Netflix é o principal serviço de entretenimento por streaming do mundo. São 204 milhões de assinaturas pagas em mais de 190 países com acesso a séries, documentários e filmes de diversos gêneros e idiomas."
/>
<!-- IMG URL: -->
<meta property="og:image" content="" />
<meta property="og:type" content="website" />
<meta property="og:image:type" content="image/jpeg" />
<!-- size up to 300px. Anything above this will not work in WhatsApp -->
<meta property="og:image:width" content="300" />
<meta property="og:image:height" content="300" />
<meta property="og:url" content="" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>