-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
81 lines (65 loc) · 5.16 KB
/
404.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
77
78
79
80
81
<!doctype html>
<html lang="en">
<head>
<title>404 Not Found</title>
<meta name="description" content="GoodTransit is your all-in-one transport partner for city living">
<meta name="keywords" content="goodtransit transportation app application transport subway city cities bus ferry">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="white">
<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=Zilla+Slab:wght@500;700&display=swap" rel="stylesheet">
</head>
<body style="margin:0">
<nav style="position:fixed;left:0;top:0;right:0;padding:10px;background:blue;text-align:center">
<p>
<span style="float:left;padding-left:15px"><a href="/" style="font-weight:bold;font-family: 'Roboto', sans-serif;font-size:20px;color:white;text-decoration:none" onMouseOver="this.style.borderBottom='3px solid white'"
onMouseOut="this.style.borderBottom='none'">GoodTransit</a></span>
<span style="float:right;padding-right:15px"><a href="https://download.goodtransit.app" style="font-weight:bold;font-family: 'Roboto', sans-serif;font-size:20px;color:white;text-decoration:none"
onMouseOver="this.style.borderBottom='3px solid white'" onMouseOut="this.style.borderBottom='none'">Download</a></span>
<span style="float:right;padding-right:15px"><a href="/whitepaper/index" style="font-weight:bold;font-family: 'Roboto', sans-serif;font-size:20px;color:white;text-decoration:none" onMouseOver="this.style.borderBottom='3px solid white'"
onMouseOut="this.style.borderBottom='none'">White Paper</a></span>
<span style="float:right;padding-right:15px"><a href="/investors" style="font-weight:bold;font-family: 'Roboto', sans-serif;font-size:20px;color:white;text-decoration:none" onMouseOver="this.style.borderBottom='3px solid white'"
onMouseOut="this.style.borderBottom='none'">Investors</a></span>
<span style="float:right;padding:5px 15px;background:white;margin: -5px 15px;border-radius:10px"><span id="countdown" style="font-weight:bold;font-family: 'Roboto', sans-serif;font-size:20px;color:blue;text-decoration:none"></span></span>
<script>
// Set the date we're counting down to
var countDownDate = new Date("September 5, 2022 12:00:00").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("countdown").innerHTML = days + "d " + hours + "h " +
minutes + "m " + seconds + "s ";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("countdown").innerHTML = "Download Now!";
}
}, 1000);
</script>
<br>
</p>
</nav>
<div style="background:white;margin:0;text-align:center;margin-bottom:120px">
<h1 style="padding-top:100px;color:blue;font-size: 60px;text-align:left;margin-left:40px;margin-right:40px;font-weight:bold;font-family:'Zilla Slab',serif;max-width:800px"><span>404, you're lost</span></h1>
<p style="padding:10px;font-weight:bold;font-family: 'Roboto', sans-serif;font-size:20px;color:blue;text-align:left;margin-left:60px;margin-right:40px">We wish this page existed, maybe it will eventually. In the meantime, you should
explore:<br><br><a href="https://download.goodtransit.app/" style="text-decoration:none;background:blue;color:white;padding:4px" onMouseOver="this.style.color='white';this.style.background='black'"
onMouseOut="this.style.color='white';this.style.background='blue'">Download Waitlist</a><br><br><a href="/whitepaper" style="text-decoration:none;background:blue;color:white;padding:4px"
onMouseOver="this.style.color='white';this.style.background='black'" onMouseOut="this.style.color='white';this.style.background='blue'">White Paper</a><br><br><a href="/investors"
style="text-decoration:none;background:blue;color:white;padding:4px" onMouseOver="this.style.color='white';this.style.background='black'" onMouseOut="this.style.color='white';this.style.background='blue'">Investors</a></p>
<p style="position:fixed;bottom:40px;left:40px"><a href="https://download.goodtransit.app" style="padding:10px;background:blue;font-weight:bold;font-family: 'Roboto', sans-serif;font-size:20px;color:white;text-decoration:none"
onMouseOver="this.style.color='white';this.style.background='black'" onMouseOut="this.style.color='white';this.style.background='blue'">join download waitlist</a></p>
</div>
</body>
</html>