feat: update onboard ASCII art to seafood shack lobster theme

This commit is contained in:
Peter Steinberger 2026-01-04 16:09:03 +01:00
parent 21826cdfb9
commit e8de7d083d
1 changed files with 6 additions and 5 deletions

View File

@ -54,11 +54,12 @@ export function randomToken(): string {
export function printWizardHeader(runtime: RuntimeEnv) {
const header = [
"##### # ### # # #### ##### ####",
"# # # # # # # # # # ",
"# # ##### # # # # # # ### ",
"# # # # ## ## # # # #",
"##### ##### # # # # #### ##### #### ",
"░████░█░░░░░█████░█░░░█░███░░████░░████░░▀█▀",
"█░░░░░█░░░░░█░░░█░█░█░█░█░░█░█░░░█░█░░░█░░█░",
"█░░░░░█░░░░░█████░█░█░█░█░░█░████░░█░░░█░░█░",
"█░░░░░█░░░░░█░░░█░█░█░█░█░░█░█░░█░░█░░░█░░█░",
"░████░█████░█░░░█░░█░█░░███░░████░░░███░░░█░",
" 🦞 FRESH DAILY 🦞",
].join("\n");
runtime.log(header);
}