fp/packages/next/app/vt/[slug]/not-found.tsx

12 lines
278 B
TypeScript
Raw Normal View History

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>
<p>Could not find a matching vtubler.</p>
<Link href="/vt">Return to vtuber list</Link>
</div>
)
}