carbon-components-svelte/docs/src/pages/_fallback.svelte
Enrico Sacchetti 47722011b0
chore: upgrade routify
Support sass and typescript
2023-02-11 13:59:26 -05:00

20 lines
397 B
Svelte

<script>
import { Content, Grid, Row, Column, Link } from "carbon-components-svelte";
import { url, metatags } from "@roxi/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>