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
15
import { Head, Link } from '@inertiajs/react'

export default function NotFound() {
  return (
    <div className="error-page">
      <Head title="Not found" />
      <p className="status">404</p>
      <h1>Nothing here</h1>
      <p className="muted">That address does not match any route.</p>
      <Link className="button" href="/">
        Go home
      </Link>
    </div>
  )
}