mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-06-29 12:49:12 +00:00
feat: Add pages/components for authenticated flow
This commit is contained in:
parent
130a4932e6
commit
6c4b88cff7
7 changed files with 478 additions and 0 deletions
9
app/(authenticated)/(app)/overview/loading.tsx
Normal file
9
app/(authenticated)/(app)/overview/loading.tsx
Normal file
|
@ -0,0 +1,9 @@
|
|||
import { Loading as Spinner } from "@/components/loading";
|
||||
|
||||
export default function Loading() {
|
||||
return (
|
||||
<div className="flex items-center justify-center w-full h-screen">
|
||||
<Spinner className="text-white" />
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue