-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
78 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,5 +80,4 @@ | |
"devDependencies": { | ||
"gh-pages": "^3.1.0" | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import React from "react"; | ||
import { Link } from "react-router-dom"; | ||
import { Container } from "react-bootstrap"; | ||
|
||
const NotFound = () => { | ||
return ( | ||
<React.Fragment> | ||
<Container fluid> | ||
<Container> | ||
<div className="main-content mx-auto" id="not-found-content"> | ||
<h2>404</h2> | ||
<h4>Oops! Page Not Found</h4> | ||
<p> | ||
The page you are looking for does not exist. You may have mistyped | ||
the address or the page may have moved. | ||
</p> | ||
<Link to="/">Back to Home Page</Link> | ||
</div> | ||
</Container> | ||
</Container> | ||
</React.Fragment> | ||
); | ||
}; | ||
|
||
export default NotFound; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#not-found-content { | ||
max-width: 600px; | ||
text-align: center; | ||
margin-bottom: 100px; | ||
|
||
h2 { | ||
font-size: 18vw; | ||
color: $primary-blue; | ||
line-height: 1em; | ||
} | ||
h4 { | ||
position: relative; | ||
font-size: 1.5em; | ||
margin-bottom: 15px; | ||
color: $black; | ||
font-weight: 300; | ||
display: inline-block; | ||
} | ||
|
||
p { | ||
color: $github-button-black; | ||
font-size: 1.2em; | ||
} | ||
a { | ||
border-bottom: 3px solid $primary-blue; | ||
color: $primary-blue; | ||
display: inline-block; | ||
font-size: 18px; | ||
font-weight: 600; | ||
margin: 5px; | ||
text-decoration: none; | ||
transition: all 0.3s ease; | ||
&:hover { | ||
border-bottom: 3px solid $link-blue; | ||
color: $link-blue; | ||
} | ||
} | ||
@media (max-width: 600px) { | ||
margin-bottom: 50px; | ||
p { | ||
font-size: 1em; | ||
} | ||
a { | ||
margin-top: 0px; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters