Skip to content

Commit fb8e977

Browse files
committed
Add contributors and improve about page
1 parent a48e274 commit fb8e977

File tree

2 files changed

+61
-12
lines changed

2 files changed

+61
-12
lines changed

src/app/(content)/about/page.tsx

Lines changed: 44 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1+
import Link from 'next/link';
2+
13
const About = () => (
2-
<div>
3-
<h1>Welcome to Relisten</h1>
4+
<div className="content">
5+
<h1 className="mb-4">Welcome to Relisten.net</h1>
46

57
<p>Peruse the various bands and enjoy their extensive live catalogues for free.</p>
68

9+
<p>
10+
We started Relisten over a decade ago to make recorded concerts more accessible. It is a
11+
completely free and open source platform available on Web, iOS, Android, and Sonos.
12+
</p>
13+
714
<p>
815
This site is powered by{' '}
916
<a href="https://archive.org" target="_blank" rel="noreferrer">
@@ -13,50 +20,75 @@ const About = () => (
1320
<a href="https://phish.in" target="_blank" rel="noreferrer">
1421
Phish.in
1522
</a>
16-
, and
23+
, and&nbsp;
1724
<a
1825
href="https://docs.google.com/spreadsheets/d/1yAXu83gJBz08cW5OXoqNuN1IbvDXD2vCrDKj4zn1qmU/edit#gid=29"
1926
target="_blank"
2027
rel="noreferrer"
2128
>
2229
The Phish Spreadsheet
2330
</a>
24-
.
31+
. And of course, all of the tapers, tranferrers, uploaders, bands, and organizers who make
32+
this all possible.
33+
</p>
34+
35+
<p>
36+
We operate completely non-commercially and do not accept donations. If you do wish to donate,
37+
please direct donations towards the wonderful people at&nbsp;
38+
<a href="https://archive.org/donate/">Archive.org</a> or{' '}
39+
<a href="https://mbird.org/donations/">The Mockingbird Foundation</a>.
2540
</p>
2641

2742
<h3>Mission</h3>
2843

2944
<p>
30-
We want to provide you with a simple and powerful experience that you can enjoy in the home or
31-
in the rain.
45+
We strive to provide you with a simple and powerful experience that you can enjoy in the home
46+
or{' '}
47+
<Link href="/grateful-dead/1976/06/12/mission-in-the-rain?source=2173898">in the rain</Link>.
3248
</p>
3349

34-
<h3>Open Source</h3>
50+
<h3>Free & Open Source</h3>
3551

3652
<p>
3753
This entire platform is open source at{' '}
3854
<a href="https://github.com/relistennet" target="_blank" rel="noreferrer">
3955
https://github.com/relistennet
4056
</a>
41-
.
57+
. We maintain a level of direction for our vision, but we do welcome contributions. If you are
58+
interested, best to stop by <a href="/discord">our Discord</a> to discuss what you'd like to
59+
contribute. Or you can always open an issue on Github with questions or bugs.
4260
</p>
4361

44-
<h3>Thank you</h3>
62+
<h3>Thank You & Enjoy</h3>
4563

4664
<p>
47-
Enjoy <br />-{' '}
65+
The Relisten Team: <br />
4866
<a href="https://saewitz.com" target="_blank" rel="noreferrer">
4967
Daniel Saewitz
5068
</a>{' '}
5169
and{' '}
5270
<a href="https://alecgorge.com" target="_blank" rel="noreferrer">
5371
Alec Gorge
5472
</a>
55-
, <a href="mailto:[email protected]">[email protected]</a>
73+
, contact us: <a href="mailto:[email protected]">[email protected]</a>
5674
</p>
5775

5876
<br />
59-
<br />
77+
78+
<h4 className="font-semibold">Significant Open Source Contributors</h4>
79+
80+
<ul className="mb-8">
81+
<li>
82+
<a href="https://github.com/Thenlie" target="_blank" rel="noreferrer">
83+
Leithen Crider
84+
</a>
85+
</li>
86+
<li>
87+
<a href="https://github.com/farktronix" target="_blank" rel="noreferrer">
88+
Jacob Farkas
89+
</a>
90+
</li>
91+
</ul>
6092

6193
<p>
6294
This site complies with{' '}

src/styles/globals.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,23 @@
4242
::file-selector-button {
4343
border-color: var(--color-gray-200, currentColor);
4444
}
45+
46+
p {
47+
@apply mb-4;
48+
}
49+
50+
.content a {
51+
@apply text-blue-500 hover:underline;
52+
}
53+
54+
h3 {
55+
@apply text-2xl font-semibold;
56+
}
57+
58+
li {
59+
margin-left: 24px;
60+
list-style-type: disc;
61+
}
4562
}
4663

4764
@utility nav-btn {

0 commit comments

Comments
 (0)