Files
feynman/logo.mjs
Advait Paliwal 6ff4dde341 Fix OAuth logo: VT323 font, only patch logo not text
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 08:19:21 -07:00

16 lines
1.5 KiB
JavaScript

export const FEYNMAN_ASCII_LOGO = [
" ██████",
" ███",
"█████████ ████████ ███ ███ ███ ██████ ██ ███ ████ ███████ ███ ██████",
" ███ ███ ███ ███ ███ ████ ███ ███ ██ ███ ███ ████ ███",
" ███ ████████████ ███ ███ ███ ███ ███ ██ ███ █████████ ███ ███",
" ███ ███ ██ ███ ███ ███ ███ ██ ███ ███ ███ ███ ███",
"███████ ████████ ████ ███ ███ ███ ██ ███ ██████ ███ ███ ███",
" ███",
" █████",
];
export const FEYNMAN_ASCII_LOGO_TEXT = FEYNMAN_ASCII_LOGO.join("\n");
export const FEYNMAN_LOGO_HTML = `<style>@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');.logo{width:auto!important;height:auto!important;margin-bottom:16px!important}</style><span style="font-family:'VT323',monospace;font-size:48px;color:#10b981">feynman</span>`;