mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-24 16:11:53 -05:00
14 lines
418 B
TypeScript
14 lines
418 B
TypeScript
export default function NotFound() {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center h-dvh bg-background text-foreground">
|
|
<div className="flex items-center gap-4">
|
|
<h1 className="text-2xl font-mono font-semibold">404</h1>
|
|
<div className="h-8 w-px bg-foreground/20" />
|
|
<p className="text-sm text-foreground/70">
|
|
This page could not be found.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|