Files
colanode/desktop/src/components/app-loading.tsx

17 lines
488 B
TypeScript
Raw Normal View History

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