Skip to content

Commit

Permalink
NEOS-539: updated 404 page (#924)
Browse files Browse the repository at this point in the history
  • Loading branch information
evisdrenova committed Dec 19, 2023
1 parent 701b39e commit 5753041
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions frontend/apps/web/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import BaseLayout from './BaseLayout';

export default function Component() {
return (
<BaseLayout>
<div className="flex flex-col items-center justify-center h-screen bg-background">
<Card className="w-full max-w-md p-8 dark:bg-background">
<CardHeader>
<CardTitle className="text-center text-gray-900 dark:text-gray-200 text-2xl">
404 Error
</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="text-center">
<div className="text-gray-600 dark:text-gray-400">
The page you are looking for does not exist or may have been
moved.
</div>
</div>
</CardContent>
</Card>
</div>
</BaseLayout>
);
}

0 comments on commit 5753041

Please sign in to comment.