chahuadev-hub / splash.html
chahuadev
Animate Open on HF button and open tree main URL
d665f70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src https://fonts.gstatic.com; img-src 'self' data:; script-src 'self' 'unsafe-inline';">
<title>Chahuadev Hub — Loading</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 100vw;
height: 100vh;
overflow: hidden;
background: #09090f;
background-image:
radial-gradient(900px 400px at 60% 20%, rgba(124, 58, 237, 0.08), transparent 60%),
linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
background-size: 100% 100%, 40px 40px, 40px 40px;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Inter', system-ui, sans-serif;
-webkit-user-select: none;
user-select: none;
}
.splash-container { text-align: center; }
.logo {
width: 88px;
height: 88px;
margin: 0 auto 22px;
background: rgba(124, 58, 237, 0.10);
border: 2px solid rgba(124, 58, 237, 0.30);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
animation: pulse 2s ease-in-out infinite;
box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
}
.title {
font-size: 24px;
font-weight: 800;
letter-spacing: -0.5px;
background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 4px;
}
.subtitle {
font-size: 11px;
color: #64748b;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 32px;
}
.progress-bar {
width: 200px;
height: 3px;
background: #1e293b;
border-radius: 2px;
margin: 0 auto 14px;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #7c3aed, #a78bfa);
border-radius: 2px;
animation: progress 1.6s ease-in-out infinite;
transform-origin: left;
}
.loading-text {
font-size: 11px;
color: #475569;
letter-spacing: 0.5px;
}
@keyframes pulse {
0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.15); }
50% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.30); }
}
@keyframes progress {
0% { width: 0%; opacity: 1; }
60% { width: 100%; opacity: 1; }
100% { width: 100%; opacity: 0; }
}
</style>
</head>
<body>
<div class="splash-container">
<div class="logo">
<svg width="38" height="38" viewBox="0 0 24 24" fill="none" stroke="#a78bfa" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<rect x="2" y="3" width="20" height="14" rx="2"/>
<path d="M8 21h8M12 17v4"/>
</svg>
</div>
<div class="title">Chahuadev Hub</div>
<div class="subtitle">Official App Distribution</div>
<div class="progress-bar"><div class="progress-fill"></div></div>
<div class="loading-text">Loading…</div>
</div>
</body>
</html>