Initial Code Commit

This commit is contained in:
2025-10-24 02:07:59 -04:00
commit f099f36838
63 changed files with 4425 additions and 0 deletions

23
Project/styles/globals.css Executable file
View File

@@ -0,0 +1,23 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
.ripple-effect {
position: fixed;
width: 10px;
height: 10px;
border-radius: 50%;
transform: translate(-50%, -50%) scale(0);
animation: ripple-animation 1s ease-out forwards;
pointer-events: none;
z-index: 5;
}
}
@keyframes ripple-animation {
to {
transform: translate(-50%, -50%) scale(300);
opacity: 0;
}
}