-
-
- Oops!!
-
- Sorry, it seems like something unexpected happened. We now know
- about this mistake and are working to fix it.
-
-
-
-
-
-
-
- );
+ return (
+
+
+
+
+ Oops!!
+
+ Sorry, it seems like something unexpected happened. We now know about this mistake and are working to fix
+ it.
+
+
+
+
+
+
+
+ );
};
export default BugPage;
diff --git a/src/pages/Errors/NotFound.tsx b/src/pages/Errors/NotFound.tsx
index cd30c55a..10dab4cf 100644
--- a/src/pages/Errors/NotFound.tsx
+++ b/src/pages/Errors/NotFound.tsx
@@ -1,57 +1,50 @@
-import { HOME_ROUTE } from "@/constants/routes";
-import { Box, Button, Center, Group, Text, Title } from "@mantine/core";
-import { useDocumentTitle } from "@mantine/hooks";
-import { ComponentPropsWithoutRef, FC } from "react";
-import { useNavigate } from "react-router-dom";
-import useErrorPageStyles from "./styles";
-
-const Illustration: FC> = (props) => {
- return (
-
- );
+import { HOME_ROUTE } from '@/constants/routes';
+import { Box, Button, Center, Group, Text, Title } from '@mantine/core';
+import { useDocumentTitle } from '@mantine/hooks';
+import { ComponentPropsWithoutRef, FC } from 'react';
+import { useNavigate } from 'react-router-dom';
+import useErrorPageStyles from './styles';
+
+const Illustration: FC> = (props) => {
+ return (
+
+ );
};
const NotFound: FC = () => {
- useDocumentTitle("404 | Not Found");
-
- const nav = useNavigate();
-
- const onHome = () => {
- nav(HOME_ROUTE, { replace: true });
- };
-
- const { classes } = useErrorPageStyles();
-
- const { container, illustration, titleStyle, descriptionStyle, btnStyle } =
- classes;
-
- return (
-
-
-
-
- Nothing to see here
-
- Page you are trying to open does not exist. You may have mistyped
- the address, or the page has been moved to another URL. If you think
- this is an error contact support.
-
-
-
-
-
+ Nothing to see here
+
+ Page you are trying to open does not exist. You may have mistyped the address, or the page has been moved to
+ another URL. If you think this is an error contact support.
+
+
+
+
+