-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (127 loc) · 4.63 KB
/
Copy pathindex.html
File metadata and controls
127 lines (127 loc) · 4.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="https://img.icons8.com/fluency/96/stack-of-coins.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="CoinTasker - The premier micro-tasking platform. Earn rewards by completing simple tasks or get work done efficiently." />
<meta name="theme-color" content="#059669" />
<title>CoinTasker | Premium Micro-Tasking Platform</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://apis.google.com" />
<link rel="preconnect" href="https://www.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap"
rel="stylesheet"
media="print"
onload="this.media='all'"
/>
<noscript>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap"
rel="stylesheet"
/>
</noscript>
<style>
/* Critical CSS for Static Hero - Inline to prevent blocking */
body { margin: 0; padding: 0; font-family: 'Inter', system-ui, sans-serif; background: #0F172A; }
.static-shell {
position: relative;
min-height: 100vh;
overflow: hidden;
background: #0F172A;
}
.static-gradient {
position: absolute;
inset: 0;
/* Fallback dark background matching the image overlay */
background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
z-index: 0;
}
.static-content {
position: relative;
z-index: 10;
display: flex;
flex-direction: column;
align-items: flex-start; /* Aligned left now */
justify-content: center;
height: 100vh;
text-align: left; /* Aligned left now */
color: white;
padding: 0 5%;
max-width: 1200px;
margin: 0 auto;
}
.static-nav {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 80px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 5%;
z-index: 20;
}
.static-logo { font-weight: 800; font-size: 24px; color: white; letter-spacing: -0.02em; }
.static-h1 {
font-family: 'Outfit', system-ui, sans-serif;
font-size: 48px;
font-weight: 700;
line-height: 1.1;
margin-bottom: 20px;
opacity: 0; /* Fade in animation handled by CSS if needed, or JS */
animation: fadeInUp 0.8s ease-out forwards;
}
.static-p {
font-size: 18px;
color: rgba(255,255,255,0.9);
max-width: 600px;
margin-bottom: 30px;
opacity: 0;
animation: fadeInUp 0.8s ease-out 0.2s forwards;
}
.static-btn {
display: inline-block;
padding: 16px 32px;
background: #059669; /* Emerald 600 */
color: white;
font-weight: 700;
border-radius: 12px;
text-decoration: none;
box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.2);
opacity: 0;
animation: fadeInUp 0.8s ease-out 0.4s forwards;
}
@media (max-width: 768px) {
.static-h1 { font-size: 36px; }
.static-shell { min-height: 500px; } /* Match Hero Mobile Height */
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body class="bg-slate-50 text-slate-900 antialiased selection:bg-emerald-100 selection:text-emerald-900">
<div id="root">
<!-- "Manual SSG" - Static Content for Instant FCP/LCP -->
<div class="static-shell">
<div class="static-gradient"></div>
<div class="static-nav">
<div class="static-logo">CoinTasker</div>
</div>
<div class="static-content">
<h1 class="static-h1">Earn Money Completing Simple Tasks</h1>
<p class="static-p">Join thousands of workers earning coins daily. Complete micro-tasks and withdraw instantly.</p>
<a href="/register" class="static-btn">Start Earning Now</a>
</div>
</div>
</div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>