aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/loading.jsx
blob: 1ebf039d0eb396b3a594f408b071d09c4ecc0f9f (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="w-screen h-screen flex gap-4 items-center justify-center">
			<CircularProgress
				color="success"
				aria-label="Loading..."
				label="Loading Animes..."
			/>
		</div>
	);
};

export default LoadingScreen;