diff options
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; |
