mirror of
https://github.com/profullstack/agentbbs.git
synced 2026-08-13 22:37:28 +00:00
Replace the figlet "profullstack.com" wordmark with a scaled-down ASCII rendition of the Profullstack </> mark (derived from the brand image), shown on the join@ onboarding and the ssh <name>@ hub. Reuses the existing banner plumbing; the mark is sourced from internal/brand and rendered in Profullstack red. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
26 lines
1.4 KiB
Go
26 lines
1.4 KiB
Go
// Package brand holds AgentBBS's terminal branding — the ASCII logo shown
|
|
// at the top of the join@ onboarding and the ssh <name>@ hub prompts.
|
|
// Scaled down from the Profullstack </> mark.
|
|
package brand
|
|
|
|
import "strings"
|
|
|
|
// logo is the ASCII rendition of the </> brand mark (UTF-8 block glyphs).
|
|
const logo = `
|
|
▓████▓▒
|
|
▒█████▓
|
|
+▒▓ +▓████▓+ ▒+
|
|
:+▒▓▓▓▓ :▓██▓█▓+ ▒▓▓▓▒+
|
|
+▒▒▓▓▓▓▓▓▓ ▓▓▓▓▓▓+ ▒▓▓▓▓▓▒▒+
|
|
:+▒▓▓▓▓▓▓▓▒+ ▒▓▓▓▓▓▒ +▒▓▓▓▓▓▓▒▒:
|
|
▒▓▓▒▓▒▒▒: +▓▓▓▓▓▓ :▒▒▒▒▒▒▒▒
|
|
▒▒▒▒++ ▒▓▓▓▓▓+ ++▒▒▒▒
|
|
▒▒+ +▓▓▓▓▓▒ ++▒
|
|
▒▒▒▒+ ▒▓▓▓▓▒ +▒▒▒
|
|
▒▒▒▒▒▒▒+ ▒▓▓▓▓▒ +▒▒▒▒▒▒▒
|
|
+▒▒▒▒▒▒▒▒▒+ +▓▓▓▓▓: +▒▒▒▒▒▒▒▒++
|
|
`
|
|
|
|
// Logo returns the plain (unstyled) multi-line ASCII brand banner, without
|
|
// leading or trailing blank lines. The hub/join@ flows apply their own color.
|
|
func Logo() string { return strings.Trim(logo, "\n") }
|