blob: af26a2b8d495287281e41371cb2e1f43fa561b3d (
plain)
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
|
import { VirtualTextFile } from "$/apps/source";
import { Link } from "../link";
export default {
name: "ABOUT.txt",
type: "text",
content: <>
<blockquote>
<p>this is a little fan website that i was inspired to make after i first saw netpunk's cover and thought "how would the promo website for this look like if it existed?".</p>
<p>hopefully, my suffering with preact was all worth it in the end and you'll enjoy it. have fun!</p>
</blockquote>
<p class="credit"><Link type="link" link="https://darkuss.fyi" external>darkuss</Link></p>
<h1>Netpunk</h1>
<ol>
<h2>
Tracklist:
</h2>
<ol>
<li>Internet Exploder</li>
<li>Netpunk (feat. Kasane Teto)</li>
<li>Free Download</li>
<li>I am not a Robot</li>
<li>Content</li>
<li>Keygen</li>
<li>Base64</li>
<li>Readme (feat. Kasane Teto)</li>
<li>Symlink</li>
<li>Memory</li>
</ol>
</ol>
<p>An album about borrowing software forever.</p>
<p>A clumsy robot forgets about their girlfriend's anniversary, scrambling to find something to do for the date, eventually concluding they should watch a movie. Of course the movie is in high demand, so the tickets have sold out. Ultimately they resort to piracy, and things spiral out of control...</p>
</>,
height: "70vh",
width: "40vw"
} as VirtualTextFile;
|