carbon-components-svelte/docs/src/pages/_fallback.svelte
2020-10-02 20:13:02 -07:00

20 lines
401 B
Svelte

<script>
import { Content, Grid, Row, Column, Link } from "carbon-components-svelte";
import { url, metatags } from "@sveltech/routify";
metatags.title = "404";
</script>
<Content>
<Grid>
<Row>
<Column>
<h1>404</h1>
<div>
Page not found.
<Link href="{$url('/')}">Return home</Link>
</div>
</Column>
</Row>
</Grid>
</Content>