Skip to content

Commit

Permalink
Merge pull request #10 from NillionNetwork/new-logo
Browse files Browse the repository at this point in the history
feat: update logo and use nillion blue
  • Loading branch information
cyberglot authored Oct 25, 2024
2 parents 3ef89a5 + d986e0d commit 80966c9
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions src/functions/displayLogo.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
import chalk from "chalk";

const nillionLogo = `
_ _ _ _
_ __ (_) | (_) ___ _ __
| '_ \\| | | | |/ _ \\| '_ \\
| | | | | | | | (_) | | | |
|_| |_|_|_|_|\\___/|_| |_|
@@@@ @@@@@@ @@@@@@ @@@@
@@@@@@@ @@@@@@ @@@@@@ @@@@@@@
@@@@@@ @@@@@@ @@@@@@ @@@@@@@
@@ @@@@@@ @@@@@@ @@
@@@@@@ @@@@@@
@@@@@@@@@@@@@@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@ @@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@
@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@@ @@@@@@
@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@@ @@@@@@
@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@@ @@@@@@
@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@ @@@@@ @@@@@@ @@@@@@
@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@@@@@@@@@@@ @@@@@@ @@@@@@
@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@@@@@@@@ @@@@@@ @@@@@@
@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@@ @@@@@@ @@@@@@
`;

export function displayLogo(): void {
console.log("\x1b[34m%s\x1b[0m", nillionLogo);
console.log(chalk.hex("#0021f5")(nillionLogo));
}

0 comments on commit 80966c9

Please sign in to comment.