mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-06 05:25:41 -05:00
22 lines
832 B
Go
22 lines
832 B
Go
package tui
|
|
|
|
import "github.com/charmbracelet/lipgloss"
|
|
|
|
func (m Model) renderBanner() string {
|
|
logo := `
|
|
██████╗ █████╗ ███╗ ██╗██╗ ██╗
|
|
██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
|
|
██║ ██║███████║██╔██╗ ██║█████╔╝
|
|
██║ ██║██╔══██║██║╚██╗██║██╔═██╗
|
|
██████╔╝██║ ██║██║ ╚████║██║ ██╗
|
|
╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝ `
|
|
|
|
theme := TerminalTheme()
|
|
style := lipgloss.NewStyle().
|
|
Foreground(lipgloss.Color(theme.Primary)).
|
|
Bold(true).
|
|
MarginBottom(1)
|
|
|
|
return style.Render(logo)
|
|
}
|