-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (76 loc) · 2.33 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8" />
<link rel="icon" href="favicon.ico" />
<meta property="og:title" content="Hello World!" />
<meta property="og:type" content="Portfólio de Lucas Smaniotto Schuch" />
<meta
property="og:url"
content="https://hello-world-lucassmaniotto.vercel.app"
/>
<meta
property="og:image"
content="./assets/image/favicon/android-chrome-192x192.png"
/>
<meta property="og:image:width" content="192" />
<meta property="og:image:height" content="192" />
<meta property="og:image:type" content="image/png" />
<meta
property="og:description"
content="Portfólio de Lucas Smaniotto Schuch"
/>
<meta property="og:site_name" content="Hello World!" />
<meta property="og:locale" content="pt_BR" />
<link
rel="icon"
href="assets/image/favicon/android-chrome-192x192.png"
type="image/x-icon"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="assets/image/favicon/android-chrome-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="assets/image/favicon/android-chrome-512x512.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/image/favicon/favicon-16x16.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/image/favicon/favicon-32x32.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/image/favicon/apple-touch-icon.png"
/>
<link rel="manifest" href="manifest.json" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Raleway&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Portfólio de Lucas Smaniotto Schuch" />
<meta name="author" content="Lucas Smaniotto Schuch" />
<title>Olá Mundo!</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>