Skip to content

Commit

Permalink
fix: use monospace for ascii art
Browse files Browse the repository at this point in the history
  • Loading branch information
frectonz committed Jun 23, 2024
1 parent 01287dc commit 181ed3c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions ui/src/routes/__root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,9 @@ function Github({ className }: { className: string }) {

function ErrorComponent() {
return (
<div className="min-h-[calc(100vh-250px)] grid place-content-center">
<pre className="text-destructive">
<div className="min-h-[calc(100vh-250px)] flex gap-4 justify-center items-center flex-col">
<Logo />
<pre className="text-destructive font-[monospace]">
{`
███████╗ ██████╗ ██████╗ ██████╗ ██████╗
██╔════╝ ██╔══██╗ ██╔══██╗ ██╔═══██╗ ██╔══██╗
Expand All @@ -212,14 +213,15 @@ function ErrorComponent() {
function NotFoundComponent() {
return (
<div className="min-h-[calc(100vh-250px)] grid place-content-center">
<pre className="text-primary">
<pre className="text-primary font-[monospace]">
{`
██╗ ██╗ ██████╗ ██╗ ██╗
██║ ██║ ██╔═████╗ ██║ ██║
███████║ ██║██╔██║ ███████║
╚════██║ ████╔╝██║ ╚════██║
██║ ╚██████╔╝ ██║
╚═╝ ╚═════╝ ╚═╝`}
╚═╝ ╚═════╝ ╚═╝
`}
</pre>
</div>
);
Expand Down

0 comments on commit 181ed3c

Please sign in to comment.