diff --git a/web/src/components/alerts/NotFound.tsx b/web/src/components/alerts/NotFound.tsx new file mode 100644 index 0000000..d7b8629 --- /dev/null +++ b/web/src/components/alerts/NotFound.tsx @@ -0,0 +1,50 @@ +import { Link } from "react-router-dom"; +import logo from "@/logo.png"; + +export const NotFound = () => { + return ( +
+
Logo
+

+ Oops, looks like there was a little too much brr! +

+

+ In case you think this a bug rather than too much brr, +

+

+ feel free to report this to our + {" "} + + GitHub page + + {" or to "} + + our official Discord channel + + . +

+

+ Otherwise, let us help you to get you back on track for more brr! +

+
+ + + +
+
+ ); +}; diff --git a/web/src/domain/routes.tsx b/web/src/domain/routes.tsx index 370b632..f6c7663 100644 --- a/web/src/domain/routes.tsx +++ b/web/src/domain/routes.tsx @@ -20,6 +20,7 @@ import { ReleaseSettings } from "../screens/settings/index"; import { RegexPlayground } from "../screens/settings/RegexPlayground"; +import { NotFound } from "@/components/alerts/NotFound"; import { baseUrl } from "../utils"; @@ -27,6 +28,7 @@ export const LocalRouter = ({ isLoggedIn }: { isLoggedIn: boolean }) => ( {isLoggedIn ? ( + } /> }> } /> } />