-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (58 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>React PWA</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- https://web.dev/uses-rel-preconnect -->
<link rel="preconnect" href="https://storage.googleapis.com" />
<meta name="description" content="Starter kit for modern web applications" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="alternate icon" href="/favicon.ico" type="image/png" sizes="16x16" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<link rel="mask-icon" href="/favicon.svg" color="#FFFFFF" />
<meta name="theme-color" content="#ffffff" />
<meta name="keywords" content="react, pwa, boilerplate, template" />
<meta
name="description"
content="React portfolio for Keenan Chiasson"
data-react-helmet="true"
/>
<meta
property="og:title"
content="Keenan Chiasson's React Portfolio"
data-react-helmet="true"
/>
<meta
property="og:description"
content="React portfolio for Keenan Chiasson"
data-react-helmet="true"
/>
<meta
property="og:url"
content="https://laszlo-ratesic.github.io/immortal-scorpion"
data-react-helmet="true"
/>
<meta
property="og:image"
content="https://react-pwa.surenatoyan.com/cover.png"
data-react-helmet="true"
/>
<meta name="twitter:card" content="summary" data-react-helmet="true" />
<!-- https://web.dev/defer-non-critical-css/ -->
<link
rel="preload"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<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=Open+Sans&display=swap" rel="stylesheet" />
<link href="https://fonts.cdnfonts.com/css/gilroy-bold?styles=20876,20877,20878,20879,20880" rel="stylesheet">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>