mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-23 23:52:05 -05:00
19 lines
608 B
TypeScript
19 lines
608 B
TypeScript
import Link from "next/link";
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div className="min-h-dvh pt-(--landing-topbar-height)">
|
|
<div className="relative flex min-h-[calc(100dvh-var(--landing-topbar-height))] flex-col items-center justify-center px-6 text-center space-y-4">
|
|
<h1 className="text-7xl font-light font-mono">404</h1>
|
|
<p className="text-base font-mono">This page could not be found.</p>
|
|
<div className="pt-4">
|
|
<Button asChild>
|
|
<Link href="/">Back to Home</Link>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|