12 lines
237 B
TypeScript
12 lines
237 B
TypeScript
import Link from "next/link";
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div>
|
|
<h2>Nicht gefunden</h2>
|
|
<p>Die angefragte Seite konnte nicht gefunden werden.</p>
|
|
<Link href="/">Zurück zur Startseite</Link>
|
|
</div>
|
|
);
|
|
}
|