feat: initialize landing page, payment logic, bot coordination, and configuration validation systems

This commit is contained in:
2569718930@qq.com
2026-05-26 02:11:27 +08:00
parent b68772f031
commit e852b9bc89
10 changed files with 111 additions and 750 deletions
+20
View File
@@ -77,6 +77,26 @@ const config: Config = {
"elevation-2": "var(--shadow-elevation-2)",
"elevation-3": "var(--shadow-elevation-3)",
},
keyframes: {
"fade-up": {
"0%": { opacity: "0", transform: "translateY(20px)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
"fade-in": {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
gradient: {
"0%": { backgroundPosition: "0% 50%" },
"50%": { backgroundPosition: "100% 50%" },
"100%": { backgroundPosition: "0% 50%" },
},
},
animation: {
"fade-up": "fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards",
"fade-in": "fade-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards",
gradient: "gradient 8s ease infinite",
},
},
},
plugins: [],