2024-01-20 16:16:14 +00:00
|
|
|
import Link from 'next/link'
|
|
|
|
|
|
|
|
export default function NotFound() {
|
|
|
|
return (
|
|
|
|
<div className='section'>
|
|
|
|
<h2 className='title is-2'>404 Not Found</h2>
|
2024-05-27 22:20:58 +00:00
|
|
|
<p>Could not find that stream archive.</p>
|
2024-01-20 16:16:14 +00:00
|
|
|
|
2024-07-06 08:49:51 +00:00
|
|
|
<Link href="/archive">Return to archive list</Link>
|
2024-01-20 16:16:14 +00:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|