| 1 | import { consola } from "consola"; |
| 2 | import figlet from "figlet"; |
| 3 | import pc from "picocolors"; |
| 4 | |
| 5 | export function displayBanner() { |
| 6 | const text = figlet.textSync("bhvr", { |
| 7 | font: "Big", |
| 8 | horizontalLayout: "default", |
| 9 | verticalLayout: "default", |
| 10 | width: 80, |
| 11 | whitespaceBreak: true, |
| 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 | } |