File size: 486 Bytes
6c75f16 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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>
)
}
|