diff --git a/src/components/ErrorPage/index.js b/src/components/ErrorPage/index.js index 8021fa6..f138a9f 100644 --- a/src/components/ErrorPage/index.js +++ b/src/components/ErrorPage/index.js @@ -3,45 +3,46 @@ import { Title } from 'react-head' import { Translate, English, Swedish } from '../Translate' -export const ErrorPage = ({ error }) => - - - { error.code + ' - Konglig Datasektionen' } - -
-
-
-
-
-

{error.code} {error.message}

+export const ErrorPage = ({ error }) => ( + + + {error.code + ' - Konglig Datasektionen'} + +
+
+
+
+
+

{error.code} {error.message}

+
+
-
+
+
+
+
+
+ + +

That didn't go to well...

+
+

Perhaps the URL is incorrect, or the content might have moved.

+

+ If you think this shouldn't happen you could create an issue on GitHub or ask about it on our Slack. +

+
+ +

Det här gick ju inte så bra...

+
+

Kanske stavade du fel i adressen, eller så har innehållet flyttat.

+

+ Om du tror att det här inte borde hända så kan du skapa ett issue på GitHub eller ställa en fråga i Slacken. +

+
+
-
-
-
-
-
- - -

That didn't go to well...

-
-

Perhaps the URL is incorrect, or the content might have moved.

-

- If you think this shouldn't happen you could create an issue on GitHub or ask about it on our Slack. -

-
- -

Det här gick ju inte så bra...

-
-

Kanske stavade du fel i adressen, eller så har innehållet flyttat.

-

- Om du tror att det här inte borde hända så kan du skapa ett issue på GitHub eller ställa en fråga i Slacken. -

-
-
-
-
+ +); export default ErrorPage