Files
sapper-template/routes/4xx.html
2018-02-17 18:39:46 -05:00

44 lines
511 B
HTML

<:Head>
<title>Not found</title>
</:Head>
<Layout page='home'>
<h1>Not found</h1>
<p>Please check the URL</p>
</Layout>
<style>
h1, p {
text-align: center;
margin: 0 auto;
}
h1 {
font-size: 2.8em;
text-transform: uppercase;
font-weight: 700;
margin: 0 0 0.5em 0;
}
p {
margin: 1em auto;
}
@media (min-width: 480px) {
h1 {
font-size: 4em;
}
}
</style>
<script>
import Layout from './_components/Layout.html';
export default {
components: {
Layout
}
};
</script>