Initial commit

This commit is contained in:
Alois 2026-03-10 20:44:25 +01:00
commit 2f5e10140c
133 changed files with 10429 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import Link from "../link";
export default function Screen(props: { error: string; description: string }) {
return (
<div class="bg-background w-full h-screen flex flex-col justify-center items-center">
<p class="text-3xl font-bold">{props.error}</p>
<p class="pt-4 text-lg w-1/2 text-center text-muted-foreground pb-8">
{props.description}
</p>
<Link label="status.tensamin.net" link="https://status.tensamin.net" />
</div>
);
}