Update console banner and messaging

This commit is contained in:
jelveh
2026-05-07 19:49:01 -07:00
parent 5ffac54c86
commit 66e24a07d4
+9 -6
View File
@@ -890,19 +890,22 @@ const puterInit = (function () {
printDevCTA = function () {
if ( this.quiet || globalThis.PUTER_QUIET ) return;
console.log(
'%c╔═╗╦ ╦╔╦╗╔═╗╦═╗ ╦╔═╗\n' +
'╠═╝║ ║ ║ ║╣ ╠╦╝ ║╚═╗\n' +
'╩ ╚═╝ ╩ ╚═╝╩╚═ ╚╝╚═╝',
'color: #000fd8; font-weight: bold; font-size: 16px; font-family: monospace;'
'%c' +
' ____ _ _ _____ _____ ____ _ ____\n' +
'| _ \\| | | |_ _| ____| _ \\ | / ___|\n' +
'| |_) | | | | | | | _| | |_) | | \\___ \\\n' +
'| __/| |_| | | | | |___| _ < _ | |___) |\n' +
'|_| \\___/ |_| |_____|_| \\_(_)_|____/',
'color: #000fd8; font-weight: bold; font-size: 14px; font-family: monospace;'
);
console.log(
'%cSubmit your web app to the Puter App Store:\n' +
'%cSubmit your app to the Puter App Store:\n' +
'%chttps://apps.puter.com/',
'color:rgb(0, 57, 137); font-size: 18px; font-weight: bold;',
'color: #3b82f6; font-size: 18px; font-weight: bold; text-decoration: underline;'
);
console.log(
'%c🔇 To disable this message: %cputer.quiet = true',
'%cTo disable this message: %cputer.quiet = true',
'color: #94a3b8; font-size: 11px;',
'color: #94a3b8; font-size: 11px; font-style: italic;'
);