+
diff --git a/src/router/useMainRouter.tsx b/src/router/useMainRouter.tsx
index 8a225310e..af5430d35 100644
--- a/src/router/useMainRouter.tsx
+++ b/src/router/useMainRouter.tsx
@@ -2,6 +2,7 @@ import React from 'react';
import { useRoutes } from 'react-router-dom';
import Game from '@pages/Game/Game';
import Library from '@pages/Library/Library';
+import NotFound from '@pages/NotFound/NotFound';
import Profile from '@pages/Profile/Profile';
import SignUp from '@pages/SignUp/SignUp';
import Study from '@pages/Study/Study';
@@ -35,6 +36,10 @@ const useMainRouter = () =>
index: true,
element: ,
},
+ {
+ path: '*',
+ element: ,
+ },
{
path: 'signUp',
element: ,
diff --git a/src/tailwind.css b/src/tailwind.css
index fc936deff..75d83641d 100644
--- a/src/tailwind.css
+++ b/src/tailwind.css
@@ -19,3 +19,8 @@
color: #fff;
}
}
+
+.torch {
+ @apply fixed mb-0 ml-[-250px] mr-0 mt-[-250px] h-[500px] w-[500px] rounded-[50%] opacity-100 shadow-[0_0_0_9999em_#000000f7] after:block after:h-full after:w-full after:rounded-[50%] after:shadow-[inset_0_0_40px_2px_#000,0_0_20px_4px_rgba(13,13,10,0.2)] after:content-[''];
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/tailwind.config.js b/tailwind.config.js
index f7c815858..a59598de0 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -36,6 +36,28 @@ module.exports = {
backgroundImage: {
galaxy: "url('/public/img/background_galaxy.png')",
},
+ keyframes: {
+ typing: {
+ '0%': {
+ width: '0%',
+ visibility: 'hidden',
+ },
+ '100%': {
+ width: '100%',
+ },
+ },
+ blink: {
+ '50%': {
+ borderColor: 'transparent',
+ },
+ '100%': {
+ borderColor: 'white',
+ },
+ },
+ },
+ animation: {
+ typing: 'typing 2s steps(25), blink',
+ },
},
},
plugins: [],