add servies page with content and a typing words feature to contact page

This commit is contained in:
2026-05-30 08:51:05 +01:00
parent 87f8d2b04e
commit f67093f34e
12 changed files with 406 additions and 19 deletions

View File

@@ -0,0 +1,25 @@
.typing-words {
display: inline;
white-space: nowrap;
}
.typing-words-cursor {
display: inline-block;
margin-left: 0.05em;
font-weight: 300;
color: #38bdf8;
animation: typing-cursor-blink 1s step-end infinite;
}
@keyframes typing-cursor-blink {
50% {
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.typing-words-cursor {
animation: none;
opacity: 0.6;
}
}