feat: added error page + join endpoint

This commit is contained in:
Mat12143 2025-08-02 00:52:13 +02:00
parent d9e7b8f0ff
commit ab9bfa41c9
10 changed files with 184 additions and 71 deletions

View file

@ -1 +1,15 @@
@import 'tailwindcss';
@keyframes spin-slower {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.spin-slower {
animation: spin-slower 15s linear infinite;
}