hts/apps/migrant/app/[locale]/not-found.tsx

11 lines
216 B
TypeScript

import Link from 'next/link'
export default function NotFound() {
return (
<div>
<h2>Not Found</h2>
<p>Could not find requested resource</p>
<Link href="/">Return Home</Link>
</div>
)
}