first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 21:52:23 +03:00
commit 880f412e2c
2662 changed files with 866266 additions and 0 deletions

22
ui/app/__notFound.tsx Normal file
View File

@@ -0,0 +1,22 @@
import { Link } from "@tanstack/react-router";
export function NotFoundComponent() {
return (
<main className="h-base flex items-center justify-center p-6">
<div className="mx-auto w-full max-w-md text-center">
<p className="text-foreground text-7xl font-bold tracking-tight">404</p>
<h1 className="text-foreground mt-4 text-2xl font-semibold">Page not found</h1>
<p className="text-muted-foreground mt-2 text-sm">The page you are looking for doesnt exist or has been moved</p>
<div className="mt-6 flex items-center justify-center gap-3">
<Link
data-testid="not-found-go-home-link"
to="/workspace/logs"
className="bg-primary text-primary-foreground focus-visible:ring-primary inline-flex items-center rounded-md px-4 py-2 text-sm font-medium shadow transition-opacity hover:opacity-90 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-none"
>
Go home
</Link>
</div>
</div>
</main>
);
}