arcature 0.1.3

Arcature: an opinionated full-stack Rust web framework. One package, batteries included.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script lang="ts">
  import { Link } from '@inertiajs/svelte'
</script>

<svelte:head>
  <title>Not found</title>
</svelte:head>

<div class="error-page">
  <p class="status">404</p>
  <h1>Nothing here</h1>
  <p class="muted">That address does not match any route.</p>
  <Link class="button" href="/">Go home</Link>
</div>