diff options
| author | darkuss <darkussdelta@gmail.com> | 2026-08-22 01:58:37 +0200 |
|---|---|---|
| committer | darkuss <darkussdelta@gmail.com> | 2026-08-22 01:58:37 +0200 |
| commit | 8f32fd58cafe677c07d9ed9fff84f6e255156d37 (patch) | |
| tree | a5de06ffb2c0a8b878c8a563ec8cee692efc98ac /src/desktop/files/memory.tsx | |
| parent | 5ac62cc1a4d9a5f50ea26d5bc1afb0fbf95da23c (diff) | |
holy shit i'm finally done
Diffstat (limited to 'src/desktop/files/memory.tsx')
| -rw-r--r-- | src/desktop/files/memory.tsx | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/desktop/files/memory.tsx b/src/desktop/files/memory.tsx new file mode 100644 index 0000000..cdcbfa3 --- /dev/null +++ b/src/desktop/files/memory.tsx @@ -0,0 +1,19 @@ +import { VirtualTextFile } from "$/apps/source"; +import { Hr } from "../hr"; +import { Link } from "../link"; + +export default { + name: "Memory.txt", + type: "text", + content: ( + <> + <h1>Memory</h1> +<h3>Reconstructing human music after the singularity</h3> +<p>I have been learning guitar for a year now and finally felt comfortable enough with my skill level to make a full song using it! Heavily inspired by the music from <Link link="https://www.youtube.com/playlist?list=OLAK5uy_mNWkxcU6VC_aWOFnpqYha-J5UMzwbVlx4" type="link">kessoku band</Link> and <Link link="https://youtu.be/XLwmEuM0dIw" type="link">Sunfaded</Link>.</p> +<p>Memory is expensive nowadays, so cherish it while you can.</p> + + </> + ), + height: "70vh", + width: "70vw", +} as VirtualTextFile; |
