Refactor next.config.js and form.tsx

This commit is contained in:
mr. M 2024-10-14 22:52:01 +02:00
parent 00c7ce4c56
commit 5ec0fcbb56
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
31 changed files with 388 additions and 336 deletions

View file

@ -1,24 +1,23 @@
@keyframes hueShift {
0% {
filter: hue-rotate(0deg);
}
50% {
filter: hue-rotate(170deg);
}
100% {
filter: hue-rotate(0deg);
}
}
.title {
background-clip: text;
background-image: linear-gradient(90deg, #0077e7, #01d8d1);
-webkit-background-clip: text;
color: transparent;
filter: hue-rotate(0deg);
animation: hueShift 10s infinite linear 1s;
padding-bottom: 8px;
user-select: none;
cursor: default;
}
0% {
filter: hue-rotate(0deg);
}
50% {
filter: hue-rotate(170deg);
}
100% {
filter: hue-rotate(0deg);
}
}
.title {
background-clip: text;
background-image: linear-gradient(90deg, #0077e7, #01d8d1);
-webkit-background-clip: text;
color: transparent;
filter: hue-rotate(0deg);
animation: hueShift 10s infinite linear 1s;
padding-bottom: 8px;
user-select: none;
cursor: default;
}