diff --git a/content/projects/kevink-dev.de.json b/content/projects/kevink-dev.de.json index 60c4a2e..404e4bf 100644 --- a/content/projects/kevink-dev.de.json +++ b/content/projects/kevink-dev.de.json @@ -6,7 +6,7 @@ "longDescription": "Schon so lange ich im Internet unterwegs bin war ich fasziniert von der Idee eine eigene Website zu haben. Deshalb habe ich mich an diese Seite gesetzt um mich selbst und meine Projekte zu repräsentieren. Wenn du interessiert an dem Code hinter der Seite bist, schau doch gerne auf GitHub vorbei!", "links": { "website": "https://kevink.dev", - "github": "https://github.com" + "github": "https://github.com/Unkn0wnCat/KevinK.dev.js" }, "image": "../images/KevinK.dev.png" } \ No newline at end of file diff --git a/content/projects/kevink-dev.en.json b/content/projects/kevink-dev.en.json index ba0a987..9e5b1ac 100644 --- a/content/projects/kevink-dev.en.json +++ b/content/projects/kevink-dev.en.json @@ -6,7 +6,7 @@ "longDescription": "For as long as I've been poking around the internet I've always been facinated by the idea to have my own website. This is why I've created this site to showcase myself and my projects. If you are interested in the code behind the scenes feel free to look at it on GitHub!", "links": { "website": "https://kevink.dev", - "github": "https://github.com" + "github": "https://github.com/Unkn0wnCat/KevinK.dev.js" }, "image": "../images/KevinK.dev.png" } \ No newline at end of file diff --git a/src/pages/404.js b/src/pages/404.js index 053ae0e..bcd081d 100644 --- a/src/pages/404.js +++ b/src/pages/404.js @@ -1,53 +1,20 @@ import * as React from "react" -import { Link } from "gatsby" - -// styles -const pageStyles = { - color: "#232129", - padding: "96px", - fontFamily: "-apple-system, Roboto, sans-serif, serif", -} -const headingStyles = { - marginTop: 0, - marginBottom: 64, - maxWidth: 320, -} - -const paragraphStyles = { - marginBottom: 48, -} -const codeStyles = { - color: "#8A6534", - padding: 4, - backgroundColor: "#FFF4DB", - fontSize: "1.25rem", - borderRadius: 4, -} +import { Link } from "gatsby-plugin-react-i18next" +import Layout from "../layouts/default" // markup const NotFoundPage = () => { return ( -
- Not found -

Page not found

-

- Sorry{" "} - - 😔 - {" "} - we couldn’t find what you were looking for. -
- {process.env.NODE_ENV === "development" ? ( - <> -
- Try creating a page in src/pages/. -
- - ) : null} -
- Go home. -

-
+ +
+
+

Page not found

+

+ Whoops... That page doesn't exist, so you may as well go home. +

+
+
+
) }