diff --git a/frontend/pages/404.js b/frontend/pages/404.js index aa3e7e2..74154f5 100644 --- a/frontend/pages/404.js +++ b/frontend/pages/404.js @@ -8,7 +8,7 @@ export default function Custom404() { 404: Page Not Found - Try going back or something… + Try going back or something … ) } diff --git a/frontend/pages/500.js b/frontend/pages/500.js index 79519a6..9fabec9 100644 --- a/frontend/pages/500.js +++ b/frontend/pages/500.js @@ -1,3 +1,14 @@ +import { Alert, AlertDescription, AlertTitle } from '@chakra-ui/react' +import { TbMoodSad } from 'react-icons/tb' + export default function Custom500() { - return

500 - Server-side error occurred

+ return ( + + + + 500: Server-side error occurred + + Something happened that was totally unexpected … + + ) }