aboutsummaryrefslogtreecommitdiff
path: root/src/app/kdrama/loading.jsx
blob: 4b403dbe6912e7fb311edb11f2e8a0054237cc70 (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 Kdramas..."
			/>
		</div>
	);
};

export default LoadingScreen;