mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 10:33:01 +00:00
12 lines
360 B
TypeScript
12 lines
360 B
TypeScript
import Icon from "@/components/ui/icon";
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div className={`w-full h-[100vh] flex flex-col items-center justify-center gap-4`}>
|
|
<Icon icon="circleQuestionMark" size={72} />
|
|
<span className="text-7xl font-500">404</span>
|
|
<span className="text-2xl font-400">Not Found</span>
|
|
</div>
|
|
);
|
|
}
|