Updated deisgn

This commit is contained in:
Arunavo Ray
2025-07-09 00:34:04 +05:30
parent 97997bd1c0
commit a320dc38ad
8 changed files with 224 additions and 99 deletions

View File

@@ -89,7 +89,7 @@ const structuredData = {
<link rel="canonical" href={siteUrl} />
<!-- Additional Meta Tags -->
<meta name="theme-color" content="#3b82f6" />
<meta name="theme-color" content="#5b6fff" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="Gitea Mirror" />
@@ -162,6 +162,21 @@ const structuredData = {
linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
background-size: 20px 20px;
}
/* Smooth gradient animations */
@keyframes gradient-shift {
0%, 100% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
}
.animate-gradient {
background-size: 200% 200%;
animation: gradient-shift 15s ease infinite;
}
</style>
</body>
</html>