From 181ed3cb96e2609586ee61f34c37c387d15de8fb Mon Sep 17 00:00:00 2001 From: frectonz Date: Sun, 23 Jun 2024 15:27:13 +0300 Subject: [PATCH] fix: use monospace for ascii art --- ui/src/routes/__root.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ui/src/routes/__root.tsx b/ui/src/routes/__root.tsx index be72148..b5da5ef 100644 --- a/ui/src/routes/__root.tsx +++ b/ui/src/routes/__root.tsx @@ -194,8 +194,9 @@ function Github({ className }: { className: string }) { function ErrorComponent() { return ( -
-
+    
+ +
         {`
 ███████╗    ██████╗     ██████╗      ██████╗     ██████╗ 
 ██╔════╝    ██╔══██╗    ██╔══██╗    ██╔═══██╗    ██╔══██╗
@@ -212,14 +213,15 @@ function ErrorComponent() {
 function NotFoundComponent() {
   return (
     
-
+      
         {`
 ██╗  ██╗     ██████╗     ██╗  ██╗
 ██║  ██║    ██╔═████╗    ██║  ██║
 ███████║    ██║██╔██║    ███████║
 ╚════██║    ████╔╝██║    ╚════██║
      ██║    ╚██████╔╝         ██║
-     ╚═╝     ╚═════╝          ╚═╝`}
+     ╚═╝     ╚═════╝          ╚═╝
+`}
       
);