forked from JohnSloan8/abair
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (59 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en" style="overflow-x: hidden">
<head>
<title>Abair</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="Web Application for the Abair Project" />
<link rel="icon" href="assets/images/brand/favicon.svg" type="image/svg+xml" />
<link
rel="alternate icon"
href="assets/images/brand/favicon.ico"
type="image/png"
sizes="16x16"
/>
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<link rel="mask-icon" href="assets/images/brand/favicon.svg" color="#FFFFFF" />
<meta name="theme-color" content="#ffffff" />
<meta name="keywords" content="react, pwa, boilerplate, template" />
<meta
name="description"
content="Web Application for the Abair Project"
data-react-helmet="true"
/>
<meta property="og:title" content="Abair" data-react-helmet="true" />
<meta
property="og:description"
content="Web Application for the Abair Project"
data-react-helmet="true"
/>
<meta property="og:url" content="https://abair.ie" data-react-helmet="true" />
<meta property="og:image" content="https://abair.ie/en/" 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="preload"
href="https://fonts.googleapis.com/css?family=Montserrat:200,400,500,600&display=swap"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<link
rel="stylesheet"
href="https://use.typekit.net/iiz5ypy.css"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>