main
|
Last change
on this file since 03a8d87 was dc30259, checked in by Filip Gavrilovski <filipgavrilovski28@…>, 5 months ago |
|
add loading spinner; don't show sidebar for unauthenticated users
|
-
Property mode
set to
100644
|
|
File size:
271 bytes
|
| Rev | Line | |
|---|
| [dc30259] | 1 | const LoadingSpinner = () => {
|
|---|
| 2 | return (
|
|---|
| 3 | <div className="flex h-screen items-center justify-center bg-[#121212]">
|
|---|
| 4 | <div className="w-12 h-12 border-4 border-white/10 border-t-[#1db954] rounded-full animate-spin"></div>
|
|---|
| 5 | </div>
|
|---|
| 6 | );
|
|---|
| 7 | };
|
|---|
| 8 |
|
|---|
| 9 | export default LoadingSpinner;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.