aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/+page.svelte2
-rw-r--r--src/routes/boot-logo.pngbin212582 -> 0 bytes
-rw-r--r--src/routes/boot-logo.webpbin0 -> 134494 bytes
-rw-r--r--src/routes/shared.ts10
4 files changed, 9 insertions, 3 deletions
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index 7bbd52c..6d521b5 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -13,7 +13,7 @@
*/
-->
<script lang="ts">
- import logo from './boot-logo.png';
+ import logo from './boot-logo.webp';
import './anim.css';
import { architecture, hostname, tty, versions } from './distro-info';
import { login, ttyLines, type RenderBlock, type TTYText } from './shared';
diff --git a/src/routes/boot-logo.png b/src/routes/boot-logo.png
deleted file mode 100644
index fa3edc0..0000000
--- a/src/routes/boot-logo.png
+++ /dev/null
Binary files differ
diff --git a/src/routes/boot-logo.webp b/src/routes/boot-logo.webp
new file mode 100644
index 0000000..c782b7e
--- /dev/null
+++ b/src/routes/boot-logo.webp
Binary files differ
diff --git a/src/routes/shared.ts b/src/routes/shared.ts
index b40792a..7098108 100644
--- a/src/routes/shared.ts
+++ b/src/routes/shared.ts
@@ -303,9 +303,15 @@ export const ttyLines: TTYText[] = (() => {
}
wait(1000);
clear();
- text(['Welcome to'], [''], [' the Estrogen Zone!\n\n']);
+ text(
+ ["Hi! I'm a"],
+ [''],
+ [
+ " software developer.\nI do shit like the hellhole you're seeing right now, amongst other things.\n\n",
+ ],
+ );
wait(300);
- for (const c of ' my corner of'.split('')) {
+ for (const c of ' transfem'.split('')) {
replaceLast((l) => {
l[1][0] += c;
return l;