Merge branch 'master' of github.com:Jinksi/hyperstatic
This commit is contained in:
commit
e759c7e66b
6 changed files with 28 additions and 7 deletions
1
.nvmrc
Normal file
1
.nvmrc
Normal file
|
|
@ -0,0 +1 @@
|
|||
8
|
||||
|
|
@ -22,6 +22,7 @@
|
|||
"react": "^16.0.0",
|
||||
"react-dom": "^16.0.0",
|
||||
"react-helmet": "^5.1.3",
|
||||
"react-kawaii": "^0.1.6",
|
||||
"react-markdown": "^2.5.0",
|
||||
"react-router-dom": "^4.1.1",
|
||||
"react-snapshot": "^1.1.0",
|
||||
|
|
|
|||
2
public/_headers
Normal file
2
public/_headers
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/*
|
||||
Strict-Transport-Security: max-age=63072000; includeSubDomains; preload
|
||||
|
|
@ -33,7 +33,7 @@ export default ({ title }) => (
|
|||
<NetlifySimpleForm />
|
||||
<em>Note: these will only work when deployed on Netlify</em>
|
||||
<br />
|
||||
<em>Also, these forms is active and I will receive submissions</em> 😉
|
||||
<em>Also, they are active and I will receive submissions</em> 😉
|
||||
</Container>
|
||||
</Section>
|
||||
<Helmet>
|
||||
|
|
|
|||
|
|
@ -1,15 +1,25 @@
|
|||
import React from 'react'
|
||||
import Helmet from 'react-helmet'
|
||||
import { KawaiiPlanet } from 'react-kawaii'
|
||||
import Page from '../components/Page'
|
||||
import PageHeader from '../components/PageHeader'
|
||||
import { Section, Container } from '../components/common'
|
||||
import { Section, Container, Flex } from '../components/common'
|
||||
import { color } from '../globalStyles'
|
||||
|
||||
export default () => (
|
||||
<Page>
|
||||
<PageHeader title='404' subtitle='<NoMatch />' />
|
||||
<Section thin>
|
||||
<Container>
|
||||
<h1>404 – Page Not Found ⛈</h1>
|
||||
<Section>
|
||||
<Container taCenter>
|
||||
<Flex justifyCenter>
|
||||
<KawaiiPlanet
|
||||
size={200}
|
||||
mood='sad'
|
||||
color={color.primary}
|
||||
text={`😖`}
|
||||
/>
|
||||
</Flex>
|
||||
<h3>404 – Page Not Found</h3>
|
||||
</Container>
|
||||
</Section>
|
||||
<Helmet>
|
||||
|
|
|
|||
11
yarn.lock
11
yarn.lock
|
|
@ -5533,7 +5533,7 @@ react-dev-utils@^4.2.1:
|
|||
strip-ansi "3.0.1"
|
||||
text-table "0.2.0"
|
||||
|
||||
react-dom@^15.3.0:
|
||||
react-dom@^15.3.0, react-dom@^15.3.1:
|
||||
version "15.6.2"
|
||||
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.6.2.tgz#41cfadf693b757faf2708443a1d1fd5a02bef730"
|
||||
dependencies:
|
||||
|
|
@ -5564,6 +5564,13 @@ react-helmet@^5.1.3:
|
|||
prop-types "^15.5.4"
|
||||
react-side-effect "^1.1.0"
|
||||
|
||||
react-kawaii@^0.1.6:
|
||||
version "0.1.6"
|
||||
resolved "https://registry.yarnpkg.com/react-kawaii/-/react-kawaii-0.1.6.tgz#07008c37d4cbfc06af5c0581ed7c402fc00ef597"
|
||||
dependencies:
|
||||
react "^15.3.1"
|
||||
react-dom "^15.3.1"
|
||||
|
||||
react-markdown@^2.5.0:
|
||||
version "2.5.0"
|
||||
resolved "https://registry.yarnpkg.com/react-markdown/-/react-markdown-2.5.0.tgz#b1c61904fee5895886803bd9df7db23c3dc3a89e"
|
||||
|
|
@ -5659,7 +5666,7 @@ react-snapshot@^1.1.0:
|
|||
react "^15.3.0"
|
||||
react-dom "^15.3.0"
|
||||
|
||||
react@^15.3.0:
|
||||
react@^15.3.0, react@^15.3.1:
|
||||
version "15.6.2"
|
||||
resolved "https://registry.yarnpkg.com/react/-/react-15.6.2.tgz#dba0434ab439cfe82f108f0f511663908179aa72"
|
||||
dependencies:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue