feat: better frontend state implementation, acquire version in frontend build time

This commit is contained in:
2025-09-13 20:11:39 -05:00
parent bfcd868337
commit a732ff9a15
4 changed files with 267 additions and 117 deletions

View File

@@ -5,3 +5,17 @@
-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
"Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}
@keyframes pulse {
0%,
100% {
opacity: 0.2;
}
50% {
opacity: 0.4;
}
}
.animate-pulse {
animation: pulse 2s ease-in-out infinite;
}