mirror of
https://github.com/colanode/colanode.git
synced 2025-12-16 19:57:46 +01:00
17 lines
488 B
TypeScript
17 lines
488 B
TypeScript
|
|
import React from "react";
|
||
|
|
import {Spinner} from "@/components/ui/spinner";
|
||
|
|
|
||
|
|
export function AppLoading() {
|
||
|
|
return (
|
||
|
|
<div className="min-w-screen flex h-full min-h-screen w-full items-center justify-center">
|
||
|
|
<div className="flex flex-col items-center gap-8 text-center">
|
||
|
|
<h2 className="font-neotrax text-shadow-lg text-4xl text-gray-800">
|
||
|
|
loading your workspaces
|
||
|
|
</h2>
|
||
|
|
<div>
|
||
|
|
<Spinner />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|