Implementierung - SEO - 01.08.2025

This commit is contained in:
2025-08-02 02:02:51 +02:00
parent e69e68242c
commit 4a4388be64
42 changed files with 1098 additions and 321 deletions
+36 -1
View File
@@ -19,8 +19,17 @@ html.fonts-fallback body {
font-family: Inter, system-ui, sans-serif;
}
html {
background-color: transparent !important;
}
body {
@apply bg-background text-foreground antialiased;
@apply text-foreground antialiased;
background-color: transparent !important;
}
#root {
background-color: transparent !important;
}
h1, h2, h3, h4, h5, h6 {
@@ -78,6 +87,32 @@ html.fonts-fallback body {
}
}
@keyframes slide-right {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(100%);
}
}
@keyframes slide-down {
0% {
transform: translateY(-100%);
}
100% {
transform: translateY(100%);
}
}
.animate-slide-right {
animation: slide-right 8s linear infinite;
}
.animate-slide-down {
animation: slide-down 8s linear infinite;
}
/* Prevent hover flickering */
* {
-webkit-tap-highlight-color: transparent;