diff options
| author | real-zephex <[email protected]> | 2024-03-28 10:02:17 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-28 10:02:17 +0530 |
| commit | c447e8fde220e36bfe7b22e11a95d5d857d83ba5 (patch) | |
| tree | bdf729dbc795cdb989b11ece13ff2d9a00b77e16 /src/app/manga/loading.jsx | |
| parent | fixes: minor css fixes, added loading indicators, added error pages etc etc (diff) | |
| download | dramalama-c447e8fde220e36bfe7b22e11a95d5d857d83ba5.tar.xz dramalama-c447e8fde220e36bfe7b22e11a95d5d857d83ba5.zip | |
fixes: css improvements and UI redesign for manga info page
Diffstat (limited to 'src/app/manga/loading.jsx')
| -rw-r--r-- | src/app/manga/loading.jsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/app/manga/loading.jsx b/src/app/manga/loading.jsx new file mode 100644 index 0000000..74b0e05 --- /dev/null +++ b/src/app/manga/loading.jsx @@ -0,0 +1,9 @@ +import styles from "./manga.module.css"; + +export default function Loading() { + return ( + <div className={styles.LoadingContainer}> + <p>Please wait while we are loading your content....</p> + </div> + ); +} |