diff --git a/website/src/repl/Footer.jsx b/website/src/repl/Footer.jsx index f816df92..384e95ef 100644 --- a/website/src/repl/Footer.jsx +++ b/website/src/repl/Footer.jsx @@ -175,7 +175,13 @@ function WelcomeTab() { function ConsoleTab({ log }) { return ( -
+
+
{`███████╗████████╗██████╗ ██╗   ██╗██████╗ ███████╗██╗     
+██╔════╝╚══██╔══╝██╔══██╗██║   ██║██╔══██╗██╔════╝██║     
+███████╗   ██║   ██████╔╝██║   ██║██║  ██║█████╗  ██║     
+╚════██║   ██║   ██╔══██╗██║   ██║██║  ██║██╔══╝  ██║     
+███████║   ██║   ██║  ██║╚██████╔╝██████╔╝███████╗███████╗
+╚══════╝   ╚═╝   ╚═╝  ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝╚══════╝`}
{log.map((l, i) => { const message = linkify(l.message); return ( @@ -191,7 +197,7 @@ function ConsoleTab({ log }) { function SamplesTab() { return ( -
+
{loadedSamples.length} banks loaded: {loadedSamples.map(([name, samples]) => ( {}}> diff --git a/website/src/styles/index.css b/website/src/styles/index.css index c34a65fa..2657bab7 100644 --- a/website/src/styles/index.css +++ b/website/src/styles/index.css @@ -21,3 +21,8 @@ :root { --app-height: 100vh; } + +#console-tab, +#samples-tab { + font-family: BigBlueTerminal, monospace; +}