o2o-infinith-web/src/pages/NotFoundPage.tsx

14 lines
420 B
TypeScript

import { Link } from 'react-router-dom'
export default function NotFoundPage() {
return (
<div className="min-h-screen flex flex-col items-center justify-center">
<h1 className="font-serif text-4xl mb-4">404</h1>
<p className="text-white/60 mb-6"> .</p>
<Link to="/" className="text-accent hover:underline">
</Link>
</div>
)
}