21 lines
696 B
TypeScript
21 lines
696 B
TypeScript
import Link from 'next/link';
|
|
|
|
import { Button } from '@/components/ui/button';
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<main className="flex min-h-screen items-center justify-center bg-background p-6">
|
|
<div className="max-w-md text-center">
|
|
<p className="text-sm font-medium text-muted-foreground">404</p>
|
|
<h1 className="mt-2 text-3xl font-semibold">Page not found</h1>
|
|
<p className="mt-3 text-sm text-muted-foreground">
|
|
The page you are looking for does not exist or may have been moved.
|
|
</p>
|
|
<Button asChild className="mt-6">
|
|
<Link href="/">Go to workspace</Link>
|
|
</Button>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|