mirror of
https://github.com/documenso/documenso.git
synced 2026-07-14 23:07:13 +10:00
138d663c25
Merge origin/main into feat/external-2fa-codes. Resolve formatting conflicts caused by biome rollout; preserve both feature streams: PR's external 2FA token + signing-session 2FA proof additions plus main's RateLimit/RecipientExpired/signingReminders/date-auto-insert. In complete-document-with-token.ts, drop the duplicate early field-fetching block introduced when main moved that logic later with date auto-insert support; keep the EXTERNAL_TWO_FACTOR_AUTH check using derivedRecipientActionAuth.
27 lines
1.0 KiB
TypeScript
27 lines
1.0 KiB
TypeScript
import Link from 'next/link';
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<main className="mx-auto flex max-w-xl flex-col items-center justify-center px-4 py-32 text-center">
|
|
<h1 className="font-bold text-4xl tracking-tight">Page not found</h1>
|
|
<p className="mt-4 text-fd-muted-foreground text-lg">
|
|
The page you are looking for may have moved. Our documentation was recently restructured.
|
|
</p>
|
|
<div className="mt-8 flex flex-wrap justify-center gap-3">
|
|
<Link
|
|
href="/docs/users"
|
|
className="inline-flex items-center rounded-lg bg-documenso px-5 py-2.5 font-medium text-fd-primary-foreground text-sm transition-colors hover:bg-documenso/90"
|
|
>
|
|
Browse documentation
|
|
</Link>
|
|
<Link
|
|
href="/"
|
|
className="inline-flex items-center rounded-lg border bg-fd-background px-5 py-2.5 font-medium text-sm transition-colors hover:bg-fd-accent"
|
|
>
|
|
Go to homepage
|
|
</Link>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|