replace icons, improve music
This commit is contained in:
parent
b88c258896
commit
2011d7a83e
7 changed files with 128 additions and 67 deletions
12
app/components/LoadingSpinner.tsx
Normal file
12
app/components/LoadingSpinner.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { Loader2 } from 'lucide-react';
|
||||
|
||||
const LoadingSpinner: React.FC = () => {
|
||||
return (
|
||||
<div className="fixed inset-0 flex items-center justify-center bg-black bg-opacity-50 z-50">
|
||||
<Loader2 className="w-12 h-12 text-white animate-spin" />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default LoadingSpinner;
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue