Merge branch 'main' of github/Draconizations/pk-webs-svelte into feat/dashboard

This commit is contained in:
spiral 2022-05-16 23:02:18 -04:00
commit 8fa371bcc8
No known key found for this signature in database
GPG key ID: 244A11E4B0BCF40E
56 changed files with 6420 additions and 0 deletions

View 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>