Files
concord/concord-client/src/pages/NotFoundPage.tsx

13 lines
349 B
TypeScript
Raw Normal View History

const NotFoundPage: React.FC = () => {
return (
<div className="min-h-screen bg-gray-900 flex items-center justify-center">
<div className="text-center text-gray-400">
<h1 className="text-4xl font-bold mb-4">404</h1>
<p className="text-xl">Page not found</p>
</div>
</div>
);
};
export default NotFoundPage;