You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rappli/src/routes/[...404].tsx

28 lines
670 B
XML

import { Link } from "solid-app-router";
export default function NotFound() {
return (
<main class="text-center mx-auto text-gray-700 p-4">
<h1 class="max-6-xs text-6xl text-sky-700 font-thin uppercase my-16">
Not Found
</h1>
<p class="mt-8">
Visit{" "}
<Link
href="https://solidjs.com"
target="_blank"
class="text-sky-600 hover:underline"
>
solidjs.com
</Link>{" "}
to learn how to build Solid apps.
</p>
<p class="my-4">
<Link href="/" class="text-sky-600 hover:underline">
Home
</Link>
</p>
</main>
);
}