2026-06-17 20:31:27 +06:00
|
|
|
import { Link } from "react-router-dom";
|
2026-03-30 20:20:21 +06:00
|
|
|
|
|
|
|
|
const NotFound = () => {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex min-h-screen items-center justify-center bg-muted">
|
|
|
|
|
<div className="text-center">
|
|
|
|
|
<h1 className="mb-4 text-4xl font-bold">404</h1>
|
2026-06-17 20:31:27 +06:00
|
|
|
<p className="mb-4 text-xl text-muted-foreground">
|
2026-06-17 20:33:30 +06:00
|
|
|
Oops! Page not found.
|
2026-06-17 20:31:27 +06:00
|
|
|
</p>
|
2026-05-06 19:43:33 +06:00
|
|
|
<Link to="/" className="text-primary underline hover:text-primary/90">
|
2026-03-30 20:20:21 +06:00
|
|
|
Return to Home
|
2026-05-06 19:43:33 +06:00
|
|
|
</Link>
|
2026-03-30 20:20:21 +06:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default NotFound;
|