Skip to content

Commit af1131b

Browse files
feat: swap wordmark to mono12 block chars, expand tagline
1 parent 5a650be commit af1131b

1 file changed

Lines changed: 9 additions & 8 deletions

File tree

ui_tui.go

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ import (
1111

1212
const feedSize = 15
1313

14-
// figlet -f big HTTPSDEV
15-
const logo = ` _ _ _______ _______ _____ _____ _____ ________ __
16-
| | | |__ __|__ __| __ \ / ____| __ \| ____\ \ / /
17-
| |__| | | | | | | |__) | (___ | | | | |__ \ \ / /
18-
| __ | | | | | | ___/ \___ \| | | | __| \ \/ /
19-
| | | | | | | | | | ____) | |__| | |____ \ /
20-
|_| |_| |_| |_| |_| |_____/|_____/|______| \/ `
14+
// toilet -f mono12 HTTPSDEV
15+
const logo = ` ▄▄ ▄▄ ▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄ ▄▄▄▄▄ ▄▄▄▄▄▄▄▄ ▄▄ ▄▄
16+
██ ██ ▀▀▀██▀▀▀ ▀▀▀██▀▀▀ ██▀▀▀▀█▄ ▄█▀▀▀▀█ ██▀▀▀██ ██▀▀▀▀▀▀ ▀██ ██▀
17+
██ ██ ██ ██ ██ ██ ██▄ ██ ██ ██ ██ ██
18+
████████ ██ ██ ██████▀ ▀████▄ ██ ██ ███████ ██ ██
19+
██ ██ ██ ██ ██ ▀██ ██ ██ ██ ████
20+
██ ██ ██ ██ ██ █▄▄▄▄▄█▀ ██▄▄▄██ ██▄▄▄▄▄▄ ████
21+
▀▀ ▀▀ ▀▀ ▀▀ ▀▀ ▀▀▀▀▀ ▀▀▀▀▀ ▀▀▀▀▀▀▀▀ ▀▀▀▀`
2122

2223
type tickMsg time.Time
2324
type eventMsg Event
@@ -124,7 +125,7 @@ func (m model) View() string {
124125
for _, l := range logoLines {
125126
logoBlock.WriteString(padStr + logoStyle.Render(l) + "\n")
126127
}
127-
tagline := "zero-config https for dev servers"
128+
tagline := "Real browser-trusted HTTPS for any local dev server."
128129
taglinePad := (w - len(tagline)) / 2
129130
if taglinePad < 0 {
130131
taglinePad = 0

0 commit comments

Comments
 (0)