-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (47 loc) · 2.03 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
<!-- The Next Lap Website
GNL General Public License v3
Copyright © 2023 The Next Lap & © 2016 Rafael Pedicini
All rights reserved. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<meta name="theme-color" content="#000000" />
<title>The Next Lap</title>
<meta name="description" content="The Next Lap">
<!-- Favicon -->
<link rel='apple-touch-icon' sizes='180x180' href='public/favicon/apple-touch-icon.png'>
<link rel='icon' type='image/png' sizes='192x192' href='public/favicon/android-chrome-192x192.pngg'>
<link rel='icon' type='image/png' sizes='512x512' href='public/favicon/android-chrome-512x512.png'>
<link rel='manifest' href='public/favicon/site.webmanifest'>
<!-- Typefaces -->
<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=Noto+Sans:wght@400;500;600&family=Nunito:wght@700&display=swap" rel="stylesheet">
<!-- Icons -->
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://smtpjs.com/v3/smtp.js"></script>
<!-- Start Single Page Apps for GitHub Pages -->
<script type="text/javascript">
(function(l) {
if (l.search[1] === '/' ) {
var decoded = l.search.slice(1).split('&').map(function(s) {
return s.replace(/~and~/g, '&')
}).join('?');
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + decoded + l.hash
);
}
}(window.location))
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src='/build/bundle.js'></script>
</body>
</html>