-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.47 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
<!DOCTYPE html>
<html lang="pt-br">
<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="/src/assets/img/favicon.ico" />
<!--========== CSS ==========-->
<link rel="stylesheet" href="/src/assets/index.css" />
<!--========== TITLE ==========-->
<title>Scaleup | Customers</title>
<!--================== LINK THUMBNAIL META TAGS ===================-->
<meta property="og:site_name" content="Scaleup | Customers" />
<meta property="og:title" content="Scaleup | Customers" />
<meta
property="og:description"
content="Projeto criado para o desafio da vaga de Front End Jr, da Scaleup."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://scaleup-customers.vercel.app" />
<!-- IMG URL: -->
<meta
property="og:image"
content="https://raw.githubusercontent.com/Thiagoow/ScaleUpCustomers-VueTs-TailwindCSS/master/docs/thumbImg.jpg"
/>
<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" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>