summaryrefslogtreecommitdiff
path: root/src/desktop/files/readme.tsx
diff options
context:
space:
mode:
authordarkuss <darkussdelta@gmail.com>2026-08-22 01:58:37 +0200
committerdarkuss <darkussdelta@gmail.com>2026-08-22 01:58:37 +0200
commit8f32fd58cafe677c07d9ed9fff84f6e255156d37 (patch)
treea5de06ffb2c0a8b878c8a563ec8cee692efc98ac /src/desktop/files/readme.tsx
parent5ac62cc1a4d9a5f50ea26d5bc1afb0fbf95da23c (diff)
holy shit i'm finally done
Diffstat (limited to 'src/desktop/files/readme.tsx')
-rw-r--r--src/desktop/files/readme.tsx67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/desktop/files/readme.tsx b/src/desktop/files/readme.tsx
new file mode 100644
index 0000000..2ef67bd
--- /dev/null
+++ b/src/desktop/files/readme.tsx
@@ -0,0 +1,67 @@
+import { VirtualTextFile } from "$/apps/source";
+import { Hr } from "../hr";
+import { Link } from "../link";
+
+export default {
+ name: "Readme.txt",
+ type: "text",
+ content: (
+ <>
+ <h1>Readme</h1>
+ <h3>Save me, don't replace me</h3>
+ <Hr />
+ <p>
+ A{" "}
+ <Link link="https://en.wikipedia.org/wiki/README" type="link">
+ README
+ </Link>{" "}
+ is a text document that contains information about the content of the directory it’s located in. It typically contains instructions on how to use or install a program. If you ever need to know what a program does, the readme file shall explain.
+ </p>
+ {/* prettier-ignore */}
+ <pre><code> ░██{"\n"}
+{" "}░██{"\n"}
+░██░████ ░███████ ░██████ ░████████ ░█████████████ ░███████{"\n"}
+░███ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██{"\n"}
+░██ ░█████████ ░███████ ░██ ░██ ░██ ░██ ░██ ░█████████{"\n"}
+░██ ░██ ░██ ░██ ░██ ░███ ░██ ░██ ░██ ░██{"\n"}
+░██ ░███████ ░█████░██ ░█████░██ ░██ ░██ ░██ ░███████{"\n"}
+</code></pre>
+ <Hr />
+ <p>
+ Lyrics written by Sunnexo and retraceyoursteps, performed by{" "}
+ <Link link="https://kasaneteto.jp/" type="link">
+ Kasane Teto SV
+ </Link>
+ </p>
+ <p>Readme</p>
+ <p>Save me</p>
+ <p>Don't replace me</p>
+ <p>Open secret</p>
+ <p>Can you keep it</p>
+ <p>And yet I</p>
+ <p>Can just</p>
+ <p>Always</p>
+ <p>Show you</p>
+ <p>My file system</p>
+ <p>Read and</p>
+ <p>List them</p>
+ <br />
+ <p>(♫)</p>
+ <br />
+ <p>Readme</p>
+ <p>Save me</p>
+ <p>Don't replace me</p>
+ <p>Open secret</p>
+ <p>Can you keep it</p>
+ <p>And yet I</p>
+ <p>Can just</p>
+ <p>Always</p>
+ <p>Show you</p>
+ <p>My file system</p>
+ <p>Read and</p>
+ <p>List them</p>
+ </>
+ ),
+ height: "70vh",
+ width: "70vw",
+} as VirtualTextFile;