notes/banners.rs
1use colored::*;
2
3pub struct Banners;
4
5impl Banners {
6 pub fn small() -> String {
7 "\nNotes 🚀\n".green().to_string()
8 }
9
10 pub fn big() -> String {
11 "
12███╗ ██╗ ██████╗ ████████╗███████╗███████╗
13████╗ ██║██╔═══██╗╚══██╔══╝██╔════╝██╔════╝
14██╔██╗ ██║██║ ██║ ██║ █████╗ ███████╗
15██║╚██╗██║██║ ██║ ██║ ██╔══╝ ╚════██║
16██║ ╚████║╚██████╔╝ ██║ ███████╗███████║
17╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚══════╝╚══════╝
18
19 Clean all the brains !
20"
21 .green()
22 .to_string()
23 }
24}