Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions apps/web/src/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import Link from 'next/link';

export default function NotFound() {
return (
<div className="flex min-h-screen flex-col items-center justify-center px-4 text-center">
<h1 className="text-6xl font-bold tracking-tight">404</h1>
<p className="text-muted-foreground mt-4 text-lg">This page could not be found.</p>
<div className="mt-8 flex gap-4">
<Link
href="/"
className="bg-primary text-primary-foreground hover:bg-primary/90 inline-flex items-center rounded-md px-4 py-2 text-sm font-medium"
>
Go Home
</Link>
<Link
href="https://kilo.ai/docs"
target="_blank"
rel="noopener noreferrer"
className="border-input bg-background hover:bg-accent hover:text-accent-foreground inline-flex items-center rounded-md border px-4 py-2 text-sm font-medium"
>
Read the Docs
</Link>
</div>
</div>
);
}
Loading