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