mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 10:51:06 +00:00
14 lines
291 B
Svelte
14 lines
291 B
Svelte
<script>
|
|
import { url } from "@sveltech/routify";
|
|
import { Row, Column, Link } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<Row>
|
|
<Column lg="{16}">
|
|
<h1>404</h1>
|
|
<div>
|
|
Page not found.
|
|
<Link inline href="{$url('..')}">Return home</Link>
|
|
</div>
|
|
</Column>
|
|
</Row>
|