aboutsummaryrefslogtreecommitdiff
path: root/src/app/web-series/loading.jsx
blob: 63ffdfc781184aafb1b338b98c7dd3ccde7bafa7 (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 Web-series..."
			/>
		</div>
	);
};

export default LoadingScreen;