diff options
| author | real-zephex <[email protected]> | 2024-03-21 10:09:09 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-21 10:09:09 +0530 |
| commit | b7a9a93905c40a3b849021094cd46246d4eae32c (patch) | |
| tree | b7c627900460b2aee6583c5a6dd9c15096dd0fae /src/app/video/loading.jsx | |
| parent | fixes: anime section is fully server rendered, added a loading screen for inf... (diff) | |
| download | dramalama-b7a9a93905c40a3b849021094cd46246d4eae32c.tar.xz dramalama-b7a9a93905c40a3b849021094cd46246d4eae32c.zip | |
fixes: anime section is fully server rendered, added a loading screen for info and video page, minor css optimizations
Diffstat (limited to 'src/app/video/loading.jsx')
| -rw-r--r-- | src/app/video/loading.jsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/app/video/loading.jsx b/src/app/video/loading.jsx new file mode 100644 index 0000000..dfa397c --- /dev/null +++ b/src/app/video/loading.jsx @@ -0,0 +1,9 @@ +import "./loading.css"; + +export default function Loading() { + return ( + <div className="loadingContainer"> + <p className="text-flicker-in-glow">Loading</p> + </div> + ); +} |