frontend indentation set to 2

This commit is contained in:
Oliver Bryan
2026-01-21 17:47:04 +00:00
parent 70504b3056
commit 5a5e40659c
117 changed files with 7548 additions and 7785 deletions

View File

@@ -1,11 +1,11 @@
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>
);
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>
);
}