mirror of
https://github.com/documenso/documenso.git
synced 2026-07-20 23:13:34 +10:00
11 lines
185 B
React
11 lines
185 B
React
import Link from "next/link";
|
|
|
|
export default function FiveUhOh() {
|
|
return (
|
|
<>
|
|
<h1>500 - Something went wrong.</h1>
|
|
<Link href="/">Go back home</Link>
|
|
</>
|
|
);
|
|
}
|