diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 5169a5e..0000000 --- a/LICENSE +++ /dev/null @@ -1,22 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2015 gatsbyjs - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - diff --git a/gatsby-config.js b/gatsby-config.js index 31c9d9a..b93c809 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -1,6 +1,6 @@ module.exports = { siteMetadata: { - title: `Tribal Wars Bot`, + title: `TWHelp Discord Bot`, description: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce condimentum finibus finibus. In blandit at sapien sit amet pellentesque. Integer a massa et nulla posuere volutpat vitae et diam. Praesent eget diff --git a/package.json b/package.json index 0535e25..f27d495 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { - "name": "gatsby-starter-default", + "name": "dcbot-website", "private": true, - "description": "A simple starter to get up and developing quickly with Gatsby", + "description": "Tribal Wars Discord Bot website", "version": "0.1.0", - "author": "Kyle Mathews ", + "author": "Dawid WysokiƄski ", "dependencies": { "@material-ui/core": "^4.10.2", "@material-ui/styles": "^4.10.0", @@ -30,7 +30,6 @@ "keywords": [ "gatsby" ], - "license": "MIT", "scripts": { "build": "gatsby build", "develop": "gatsby develop", diff --git a/src/pages/404.js b/src/pages/404.js index de2c2ec..e14e665 100644 --- a/src/pages/404.js +++ b/src/pages/404.js @@ -1,14 +1,33 @@ -import React from "react" +import React from "react"; -import Layout from "../components/Layout/Layout" -import SEO from "../components/SEO" +import { makeStyles } from "@material-ui/core/styles"; +import { Container, Typography } from "@material-ui/core"; +import Layout from "../components/Layout/Layout"; +import SEO from "../components/SEO"; -const NotFoundPage = () => ( - - -

NOT FOUND

-

You just hit a route that doesn't exist... the sadness.

-
-) +const useStyles = makeStyles(() => ({ + container: { + display: "flex", + flexDirection: "column", + justifyContent: "center", + textAlign: "center", + }, +})); -export default NotFoundPage +const NotFoundPage = () => { + const classes = useStyles(); + + return ( + + + + 404 + + You just hit a route that doesn't exist. + + + + ); +}; + +export default NotFoundPage;