Upload files to "/"

This commit is contained in:
2025-12-22 15:13:52 +00:00
parent 6015ca963f
commit 0e53a7b269
264 changed files with 24582 additions and 3 deletions

13
splashscreen.tsx Normal file
View File

@@ -0,0 +1,13 @@
const SplashScreen = () => {
return (
<div className="splash-screen">
<div className="fade-in">
<img src="/angel.png" alt="Splash Image" className="splash-image" />
</div>
<div className="loader"></div>
</div>
);
};
export default SplashScreen;