forked from yihong0618/running_page
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/yihong0618/running_page
docs:update readme yihong0618#134
- Loading branch information
duanfei
committed
May 31, 2021
1 parent
aa4db87
commit 0a63cc1
Showing
11 changed files
with
120 additions
and
119 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
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
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
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 |
---|---|---|
|
@@ -7,7 +7,12 @@ | |
h1, | ||
h3, | ||
h4, | ||
li { | ||
li, | ||
a { | ||
color: $nike; | ||
text-decoration:none; | ||
} | ||
h1 { | ||
font-size: 3.5rem; | ||
} | ||
} |
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
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 |
---|---|---|
@@ -1,20 +1,22 @@ | ||
import React from 'react'; | ||
import Layout from 'src/components/Layout'; | ||
import useSiteMetadata from 'src/hooks/useSiteMetadata'; | ||
|
||
const NotFoundPage = () => ( | ||
<Layout> | ||
<h1 className="f-headline">404</h1> | ||
<p>This page doesn't exist.</p> | ||
<p className="moon-gray"> | ||
If you wanna more message, you could visit{' '} | ||
<a | ||
className="moon-gray b" | ||
href="https://github.com/yihong0618/running_page" | ||
> | ||
https://github.com/yihong0618/running_page | ||
</a> | ||
</p> | ||
</Layout> | ||
); | ||
const NotFoundPage = () => { | ||
const { siteUrl } = useSiteMetadata(); | ||
return ( | ||
<Layout> | ||
<h1 className="f-headline">404</h1> | ||
<p>This page doesn't exist.</p> | ||
<p className="moon-gray"> | ||
If you wanna more message, you could visit | ||
{' '} | ||
<a className="moon-gray b" href={siteUrl}> | ||
{siteUrl} | ||
</a> | ||
</p> | ||
</Layout> | ||
); | ||
}; | ||
|
||
export default NotFoundPage; |
Oops, something went wrong.