You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1.0 KiB
20 lines
1.0 KiB
package ui
|
|
|
|
import (
|
|
"github.com/fatih/color"
|
|
)
|
|
|
|
const cyberpunkLogo = `
|
|
██████╗██╗ ██╗██████╗ ███████╗ ██████╗ ██████╗
|
|
██╔════╝██║ ██║██╔══██╗██╔════╝██╔═══██╗██╔══██╗
|
|
██║ ██║ ██║██████╔╝███████╗██║ ██║██████╔╝
|
|
██║ ██║ ██║██╔══██╗╚════██║██║ ██║██╔══██╗
|
|
╚██████╗╚██████╔╝██║ ██║███████║╚██████╔╝██║ ██║
|
|
╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═╝ ╚═╝
|
|
`
|
|
|
|
// ShowLogo displays the application logo
|
|
func (d *Display) ShowLogo() {
|
|
cyan := color.New(color.FgCyan, color.Bold)
|
|
cyan.Println(cyberpunkLogo)
|
|
}
|