mirror of
https://github.com/velocitatem/cvfs.git
synced 2026-05-31 16:53:38 +00:00
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
import Link from 'next/link';
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div>
|
|
{/* TODO: Style this 404 page when implementing in your project */}
|
|
<h2>Not Found</h2>
|
|
<p>Could not find requested resource</p>
|
|
<Link href="/">Return Home</Link>
|
|
</div>
|
|
);
|
|
} |