-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (77 loc) · 2.28 KB
/
Copy pathindex.html
File metadata and controls
79 lines (77 loc) · 2.28 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OneBusAway Maglev</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
background-color: #f7e4c8;
color: #333;
line-height: 1.6;
}
.header-image {
width: 100%;
max-width: 600px;
height: auto;
display: block;
margin: 0 auto 30px;
}
.container {
background-color: white;
border-radius: 8px;
padding: 40px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
h1 {
margin-top: 0;
color: #2c3e50;
}
.tagline {
font-size: 1.2em;
color: #555;
margin-bottom: 30px;
}
.links {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #eee;
}
.links a {
color: #3498db;
text-decoration: none;
margin-right: 20px;
}
.links a:hover {
text-decoration: underline;
}
code {
background-color: #f4f4f4;
padding: 2px 6px;
border-radius: 3px;
font-family: 'Courier New', monospace;
}
</style>
</head>
<body>
<img src="/marketing/maglev-header.png" alt="OneBusAway Maglev" class="header-image">
<div class="container">
<h1>Welcome to Maglev</h1>
<p class="tagline">
A lightning-fast, modern rewrite of the OneBusAway REST API server in Go.
</p>
<p>
Maglev provides real-time transit information through the OneBusAway API,
delivering schedules, vehicle positions, and trip updates for transit agencies.
</p>
<div class="links">
<a href="https://github.com/OneBusAway/maglev">View the Source Code</a>
<a href="https://developer.onebusaway.org/api/where/methods">API Documentation</a>
</div>
</div>
</body>
</html>