mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 10:41:56 +00:00
34 lines
2.8 KiB
TypeScript
34 lines
2.8 KiB
TypeScript
// Simply importing this file will do the console log conditionally
|
|
// prettier-ignore
|
|
export default function consoleAdvertisement() {
|
|
console.log(
|
|
`%c
|
|
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
|
┃ ┃
|
|
┃ ;;;;;;;;;;;;;;;; ┃
|
|
┃ .;;;;;;;;;;;;;;;;;;; ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;; ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;; ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;; ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;;; ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; _ _ _ _ _ ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | | (_) | | | | | | ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | | ___ _ _ __ | | | |___| | ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;: _ | |/ _ \\| | '_ \\ | | | / __| | ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;; | |__| | (_) | | | | | | |__| \\__ \\_| ┃
|
|
┃ \\____/ \\___/|_|_| |_| \\____/|___(_) ┃
|
|
┃ ┃
|
|
┃ ;;;;;;;;;;;;;;;;;:;;;;;; https://status.im/open-positions.html ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;; ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;;; ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;;; ┃
|
|
┃ ;;;;;;;;;;;;;;;;;;;;;;;;;; ┃
|
|
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
`,
|
|
'background: #4957B8; color: #FFF;'
|
|
);
|
|
}
|