-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path+page.svelte
58 lines (51 loc) · 1.2 KB
/
+page.svelte
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
<svelte:head>
<title>Welcome to Airnote</title>
</svelte:head>
<section>
<h1 data-cy="page-title">Welcome to Airnote!</h1>
<p>
A global partnership between
<a href="https://safecast.org" target="_new">Safecast</a> &
<a href="https://blues.io" target="_net">Blues</a>. Powered by a community
of citizens monitoring the air we breathe.
</p>
<p>
To get started with your Airnote, visit the
<a href="/quickstart">Quickstart guide</a>.
</p>
<a href="/quickstart" class="btn" data-cy="setup-airnote-btn"
>Set up my Airnote</a
>
</section>
<hr />
<section>
<p>
To join the network, visit the
<a href="https://shop.blues.io/products/airnote" target="new">Blues shop</a>
to purchase your own cellular-powered air quality monitoring device.
</p>
<a
href="https://shop.blues.io/products/airnote"
class="btn"
data-cy="buy-airnote-btn">Buy an Airnote</a
>
</section>
<style>
h1 {
text-align: center;
}
section {
margin: 20px auto 0 auto;
text-align: center;
}
@media (max-width: 992px) {
section {
max-width: 720px;
padding: 0 1rem;
}
}
.btn {
display: inline-block;
margin-bottom: 10px;
}
</style>