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/symlink.tsx | |
| parent | 5ac62cc1a4d9a5f50ea26d5bc1afb0fbf95da23c (diff) | |
holy shit i'm finally done
Diffstat (limited to 'src/desktop/files/symlink.tsx')
| -rw-r--r-- | src/desktop/files/symlink.tsx | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/desktop/files/symlink.tsx b/src/desktop/files/symlink.tsx new file mode 100644 index 0000000..d697c28 --- /dev/null +++ b/src/desktop/files/symlink.tsx @@ -0,0 +1,19 @@ +import { VirtualTextFile } from "$/apps/source"; +import { Hr } from "../hr"; +import { Link } from "../link"; + +export default { + name: "Symlink.txt", + type: "text", + content: ( + <> + <h1>Symlink</h1> +<h3>⸜(。˃ ᵕ ˂ )⸝♡ ( ˶ˆᗜˆ˵ )ֶָ֢</h3> +<Hr /> +<p>A <Link link="https://en.wikipedia.org/wiki/Symbolic_link" type="link">symbolic link</Link>, often shortened as symlink, is a special computer file that refers to another file or directory by storing a path to it. Kind of romantic…</p> +<p>I made this after watching <Link link="https://en.wikipedia.org/wiki/Serial_Experiments_Lain" type="link">Serial Experiments Lain</Link>, so it does have some <Link link="https://youtube/embed/Uoox9fpmDP0" type="link">Bôa - Duvet</Link> influences.</p> + </> + ), + height: "70vh", + width: "70vw", +} as VirtualTextFile; |
