mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
20 lines
401 B
Svelte
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>
|