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.
 
 
 

22 lines
712 B

import { FileQuestion, FileText, Home } 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">
<FileQuestion 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">
Post not found
</h2>
<div className="flex flex-row space-x-2">
<Button
href="/posts"
label="All Posts"
icon={<FileText className="h-4 w-4" />}
/>
<Button href="/" label="Home" icon={<Home className="h-4 w-4" />} />
</div>
</div>
);
}