Update wizard header with new ASCII art

This commit is contained in:
Gustavo Madeira Santana 2026-01-27 22:30:38 -05:00 committed by GitHub
parent c5effb78f3
commit 8f452dbc08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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