carbon-components-svelte/docs/src/pages/_fallback.svelte
2024-11-11 21:35:48 -08:00

20 lines
399 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>