mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-14 17:50:13 +00:00
refactor(dashboard): re-organize dashboard files
This commit is contained in:
parent
e0cde35b3d
commit
1b3f188997
41 changed files with 165 additions and 166 deletions
19
dashboard/src/routes/PageNotFound.svelte
Normal file
19
dashboard/src/routes/PageNotFound.svelte
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<script lang="ts">
|
||||
import { Container, Card, CardHeader, CardBody, Row, Col, CardTitle } from 'sveltestrap';
|
||||
import { Link } from 'svelte-navigator';
|
||||
</script>
|
||||
|
||||
<Container>
|
||||
<Row>
|
||||
<Col class="mx-auto" xs={12} lg={11} xl={10}>
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle style="margin-top: 8px; outline: none;">404. Page not found</CardTitle>
|
||||
</CardHeader>
|
||||
<CardBody>
|
||||
Looks like this page doesn't exist. <Link to="/">Go home</Link>?
|
||||
</CardBody>
|
||||
</Card>
|
||||
</Col>
|
||||
</Row>
|
||||
</Container>
|
||||
Loading…
Add table
Add a link
Reference in a new issue