Added Pro Page

This commit is contained in:
2026-01-20 18:08:06 +01:00
parent 88f2e6f0f9
commit 8e8fd70c8c
13 changed files with 1954 additions and 0 deletions

View File

@@ -25,3 +25,31 @@ body {
text-wrap: balance;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fadeIn {
animation: fadeIn 0.2s ease-out;
}
.animate-slideUp {
animation: slideUp 0.3s ease-out;
}