feat: making sern help message look better, adding ascii art (#50)

This commit is contained in:
Jacob Nguyen
2022-06-28 23:47:07 -05:00
committed by GitHub
parent 330b2ee92d
commit 9bd2b0f38b

View File

@@ -1,12 +1,19 @@
import { cyanBright, yellowBright, green } from 'colorette';
import { cyanBright, green, yellowBright } from 'colorette';
export function help() {
let guide = 'Welcome to Sern!\n';
guide += `If you're new to ${cyanBright('Sern')}, run ${yellowBright(
return `
___ ___ _ __ _ __
/ __|/ _ \\ '__| '_ \\
\\__ \\ __/ | | | | |
|___/\\___|_| |_| |_|
Welcome!
If you're new to ${cyanBright('Sern')}, run ${yellowBright(
'sern init'
)} for an interactive setup to your new bot project!\n\n`;
guide += `${green(
)} for an interactive setup to your new bot project!
${green(
`If you have any ideas, suggestions, bug reports, kindly join our support server: https://discord.gg/xzK5fUKT4r`
)}`;
return guide;
)}
`;
}