This commit is contained in:
xCyanGrizzly
2026-02-18 14:26:36 +01:00
commit 3a5726e82b
167 changed files with 104081 additions and 0 deletions

9
src/app/loading.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { Flame } from "lucide-react";
export default function Loading() {
return (
<div className="flex min-h-screen items-center justify-center">
<Flame className="h-8 w-8 animate-pulse text-primary" />
</div>
);
}