forked from getcompanion-ai/feynman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogo.mjs
More file actions
15 lines (13 loc) · 1.46 KB
/
logo.mjs
File metadata and controls
15 lines (13 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>`;