aboutsummaryrefslogtreecommitdiff
path: root/src/app/loading.jsx
blob: 2fd37113c3ead4953fb69b5a8681fdb2a393ee18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { CircularProgress } from "@nextui-org/react";

const LoadingScreen = async () => {
	return (
		<div className="flex h-[90dvh] w-screen items-center justify-center gap-4">
			<CircularProgress
				color="success"
				aria-label="Loading..."
				label="Loading..."
			/>
		</div>
	);
};

export default LoadingScreen;