From 927e8ec66006c70fecd171acfbdf411d4761b46f Mon Sep 17 00:00:00 2001 From: PrathamX595 Date: Sat, 1 Jun 2024 14:37:15 +0530 Subject: [PATCH] added Error page --- frontend/src/pages/Error.tsx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/frontend/src/pages/Error.tsx b/frontend/src/pages/Error.tsx index 7a93fd7..607e46e 100644 --- a/frontend/src/pages/Error.tsx +++ b/frontend/src/pages/Error.tsx @@ -2,10 +2,17 @@ import { Link } from 'react-router-dom'; function Error() { return ( -
- This page does not exist! - Go back to homepage -
+ <> +
+
+

404

+
+
Oops! Looks like there's an error
+
+ Back to Home +
+
+ ); }