Files
colanode/desktop/src/components/app-loading.tsx
2024-07-30 16:42:09 +02:00

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>
);
}