| 1 | import { consola } from "consola"; |
| 2 | import pc from "picocolors"; |
| 3 | |
| 4 | export function displayBanner() { |
| 5 | const text = ` |
| 6 | _ _ |
| 7 | | | | | |
| 8 | | |__ | |____ ___ __ |
| 9 | | '_ \\| '_ \\ \\ / / '__| |
| 10 | | |_) | | | \\ V /| | |
| 11 | |_.__/|_| |_|\\_/ |_| |
| 12 | `; |
| 13 | |
| 14 | console.log("\n"); |
| 15 | console.log(pc.yellowBright(text)); |
| 16 | |
| 17 | consola.info(`${pc.cyan("🦫 Lets build 🦫")}`); |
| 18 | consola.info(`${pc.blue("https://github.com/stevedylandev/bhvr")}\n`); |
| 19 | } |