You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
500 B
15 lines
500 B
import { Home, XCircle } from 'lucide-react';
|
|
|
|
import { Button } from '@/components/button';
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div className="flex h-full flex-col items-center justify-center space-y-4">
|
|
<XCircle className="h-24 w-24 text-slate-700 dark:text-rose-100" />
|
|
<h2 className="text-3xl font-bold text-slate-700 dark:text-rose-50">
|
|
Page not found
|
|
</h2>
|
|
<Button href="/" label="Home" icon={<Home className="h-4 w-4" />} />
|
|
</div>
|
|
);
|
|
}
|
|
|