pages directory

This commit is contained in:
Oliver Bryan
2026-01-09 05:43:04 +00:00
parent d4394990b7
commit 3d963579a3
7 changed files with 8 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
import { CircleQuestionMark } from "lucide-react";
export default function NotFound() {
return (
<div className={`w-full h-[100vh] flex flex-col items-center justify-center gap-4`}>
<CircleQuestionMark size={72} />
<span className="text-7xl font-500">404</span>
<span className="text-2xl font-400">Not Found</span>
</div>
);
}