doordesk-js/frontend/src/routes/[...404].tsx

36 lines
1,021 B
TypeScript
Raw Normal View History

2023-06-16 00:05:37 -04:00
import { A } from "solid-start";
2023-06-16 20:46:05 -04:00
import type { JSXElement } from "solid-js";
2023-06-16 00:05:37 -04:00
export default function NotFound() {
2023-06-16 20:46:05 -04:00
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{" "}
<a
href="https://solidjs.com"
target="_blank"
class="text-sky-600 hover:underline"
>
solidjs.com
</a>{" "}
to learn how to build Solid apps.
</p>
<p class="my-4">
<A href="/" class="text-sky-600 hover:underline">
Home
</A>
{" - "}
<A href="/about" class="text-sky-600 hover:underline">
About Page
</A>
</p>
</main>
) as JSXElement;
};