Files
concord/concord-client/src/pages/NotFoundPage.tsx
Gabriel Garcia 1592703149 src: first layout, many dependencies
- setup query templates and potential auth flow/state
- basic server & channel lists
- guessed types for db and apis
- user panel / settings templates
- many steps left
2025-09-27 03:38:42 -04:00

13 lines
349 B
TypeScript

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;