Files
techzaa-frontend/src/pages/NotFound.tsx
T

20 lines
529 B
TypeScript
Raw Normal View History

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>
<p className="mb-4 text-xl text-muted-foreground">
Oops! Page not found
</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;