yuki / src /modules /error /NotFound.tsx
OhMyDitzzy
anything
6c75f16
raw
history blame contribute delete
486 Bytes
import "./NotFoundPage.css";
import { Link } from "react-router-dom";
export function NotFoundPage() {
return (
<div className="notfound-container">
<div className="notfound-card">
<div className="notfound-icon">🔍</div>
<h1>404</h1>
<h2>Page Not Found</h2>
<p>The page you're looking for doesn't exist or has been moved.</p>
<Link to="/" className="home-button">
Go to Home
</Link>
</div>
</div>
)
}