Initial commit
This commit is contained in:
commit
2f5e10140c
133 changed files with 10429 additions and 0 deletions
13
packages/ui/src/screens/error.tsx
Normal file
13
packages/ui/src/screens/error.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in a new issue