1
0
cvsa/packages/solid/src/routes/[...404].tsx

19 lines
609 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Title } from "@solidjs/meta";
import { HttpStatusCode } from "@solidjs/start";
import { Layout } from "~/components/layout";
import { A } from "@solidjs/router";
export default function NotFound() {
return (
<Layout>
<Title></Title>
<HttpStatusCode code={404} />
<main class="w-full h-[calc(100vh-6rem)] flex flex-col flex-grow items-center justify-center gap-8">
<h1 class="text-9xl font-thin">404</h1>
<p class="text-xl font-medium">(Дд)!?</p>
<A href="/"></A>
</main>
</Layout>
);
}