diff options
merge: Merge branch 'master' of ssh://git.estrogen.zone/mem-estrogen-zone
Diffstat (limited to 'src/routes/shared.ts')
-rw-r--r-- | src/routes/shared.ts | 10 |
1 files changed, 8 insertions, 2 deletions
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; |