blob: 021d3a0a9ed7819b52ef182d067247bad38ffdeb (
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
39
40
41
42
43
|
import { useRef } from "preact/hooks"
import { Edit } from "./apps/edit"
import { Window } from "./window"
import { Music } from "./apps/music";
export function Desktop() {
const ref = useRef(null);
return <div id="desktop" ref={ref}>
<div class="icon_grid">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<Window title="README.txt" width="30vw" height={300} x={40} y={40} desktop={ref}>
<Edit>
Fine release by Sunnexo 2026
Tracklist:
1. Internet Exploder
2. Netpunk (feat. Kasane Teto)
3. Free Download
4. I am not a Robot
5. Content
6. Keygen
7. Base64
8. Readme (feat. Kasane Teto)
9. Symlink
10. Memory
An album about borrowing software forever.
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...
</Edit>
</Window>
<Window title="Stream Netpunk" desktop={ref}>
<Music />
</Window>
<img id="netpunk" src="/assets/netpunk.png" />
</div>
}
|