first commit

This commit is contained in:
Your NamebaishaliHolocron
2026-06-15 12:57:03 +05:30
commit b9ac5ae0b2
398 changed files with 49583 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { LoadingSpinner } from "ikoncomponents";
// App Router renders this as the Suspense fallback inside <main> while navigating
// between menu items, so the sidebar stays put and only the content shows a spinner.
export default function Loading() {
return (
<div className="flex h-[60vh] w-full items-center justify-center">
<LoadingSpinner />
</div>
);
}