-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
303 lines (283 loc) · 17.7 KB
/
index.html
File metadata and controls
303 lines (283 loc) · 17.7 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeTrackPro - Your Coding Journey Starts Here</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap" rel="stylesheet">
<style>
.orbitron { font-family: 'Orbitron', monospace; }
.hero-bg {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.glow {
box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}
.text-glow {
text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}
.gradient-text {
background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.floating {
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
}
.particle {
position: absolute;
background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
border-radius: 50%;
animation: particle-float 6s ease-in-out infinite;
}
@keyframes particle-float {
0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.4; }
33% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
66% { transform: translateY(-10px) translateX(-10px); opacity: 0.6; }
}
</style>
</head>
<body class="bg-gray-900 text-white overflow-x-hidden">
<!-- Floating Particles Background -->
<div class="fixed inset-0 pointer-events-none">
<div class="particle w-2 h-2 top-1/4 left-1/4"></div>
<div class="particle w-1 h-1 top-1/3 left-3/4" style="animation-delay: 1s;"></div>
<div class="particle w-3 h-3 top-2/3 left-1/5" style="animation-delay: 2s;"></div>
<div class="particle w-1 h-1 top-3/4 left-4/5" style="animation-delay: 3s;"></div>
<div class="particle w-2 h-2 top-1/5 left-2/3" style="animation-delay: 4s;"></div>
</div>
<!-- Header -->
<nav class="relative z-10 bg-gray-800/80 backdrop-blur-md border-b border-blue-500/30">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<div class="flex items-center">
<div class="text-2xl font-black orbitron gradient-text">CodeTrackPro</div>
</div>
<div class="hidden md:flex space-x-8">
<a href="#features" class="text-gray-300 hover:text-blue-400 transition-colors">Features</a>
<a href="#about" class="text-gray-300 hover:text-blue-400 transition-colors">About</a>
<a href="#contact" class="text-gray-300 hover:text-blue-400 transition-colors">Contact</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-bg min-h-screen flex items-center justify-center relative overflow-hidden">
<div class="text-center z-10 max-w-4xl mx-auto px-4">
<div class="floating mb-8">
<h1 class="text-6xl md:text-8xl font-black orbitron mb-6 text-glow">
<span class="gradient-text">CodeTrackPro</span>
</h1>
<p class="text-xl md:text-2xl text-gray-300 mb-8 max-w-2xl mx-auto leading-relaxed">
Master your coding journey with AI-powered insights, dynamic analytics, and a futuristic dashboard that tracks your progress across all platforms.
</p>
</div>
<div class="flex flex-col sm:flex-row gap-4 justify-center items-center mb-12">
<a href="dashboard.html" class="glow bg-blue-600 hover:bg-blue-700 text-white font-bold py-4 px-8 rounded-lg transition-all duration-300 orbitron text-lg">
Launch Dashboard
</a>
<a href="#features" class="border-2 border-blue-500 text-blue-400 hover:bg-blue-500 hover:text-white font-bold py-4 px-8 rounded-lg transition-all duration-300 orbitron text-lg">
Learn More
</a>
</div>
<!-- Quick Stats -->
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 max-w-2xl mx-auto">
<div class="card-hover bg-gray-800/50 backdrop-blur-sm rounded-lg p-4 border border-blue-500/30">
<div class="text-3xl font-bold text-blue-400 orbitron">500+</div>
<div class="text-gray-400 text-sm">Problems Solved</div>
</div>
<div class="card-hover bg-gray-800/50 backdrop-blur-sm rounded-lg p-4 border border-purple-500/30">
<div class="text-3xl font-bold text-purple-400 orbitron">15</div>
<div class="text-gray-400 text-sm">Platforms</div>
</div>
<div class="card-hover bg-gray-800/50 backdrop-blur-sm rounded-lg p-4 border border-pink-500/30">
<div class="text-3xl font-bold text-pink-400 orbitron">AI</div>
<div class="text-gray-400 text-sm">Powered</div>
</div>
<div class="card-hover bg-gray-800/50 backdrop-blur-sm rounded-lg p-4 border border-green-500/30">
<div class="text-3xl font-bold text-green-400 orbitron">24/7</div>
<div class="text-gray-400 text-sm">Tracking</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 bg-gray-800/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-4xl md:text-5xl font-bold orbitron gradient-text mb-4">Powerful Features</h2>
<p class="text-xl text-gray-400 max-w-2xl mx-auto">Everything you need to track, analyze, and optimize your coding journey</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- AI Chat Feature -->
<div class="card-hover bg-gray-900/80 rounded-xl p-6 border border-blue-500/30">
<div class="w-12 h-12 bg-blue-600 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"></path>
</svg>
</div>
<h3 class="text-xl font-bold orbitron mb-2">AI Chat Master Bot</h3>
<p class="text-gray-400">Get personalized coding recommendations and insights from our advanced AI assistant.</p>
</div>
<!-- Dynamic Charts -->
<div class="card-hover bg-gray-900/80 rounded-xl p-6 border border-purple-500/30">
<div class="w-12 h-12 bg-purple-600 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"></path>
</svg>
</div>
<h3 class="text-xl font-bold orbitron mb-2">Dynamic Analytics</h3>
<p class="text-gray-400">Beautiful, interactive charts that visualize your coding progress and performance metrics.</p>
</div>
<!-- Platform Integration -->
<div class="card-hover bg-gray-900/80 rounded-xl p-6 border border-pink-500/30">
<div class="w-12 h-12 bg-pink-600 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.828 10.172a4 4 0 00-5.656 0l-4 4a4 4 0 105.656 5.656l1.102-1.101m-.758-4.899a4 4 0 005.656 0l4-4a4 4 0 00-5.656-5.656l-1.1 1.1"></path>
</svg>
</div>
<h3 class="text-xl font-bold orbitron mb-2">Multi-Platform</h3>
<p class="text-gray-400">Connect and track your progress across LeetCode, Codeforces, HackerRank, and more.</p>
</div>
<!-- Leaderboard -->
<div class="card-hover bg-gray-900/80 rounded-xl p-6 border border-green-500/30">
<div class="w-12 h-12 bg-green-600 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4M7.835 4.697a3.42 3.42 0 001.946-.806 3.42 3.42 0 014.438 0 3.42 3.42 0 001.946.806 3.42 3.42 0 013.138 3.138 3.42 3.42 0 00.806 1.946 3.42 3.42 0 010 4.438 3.42 3.42 0 00-.806 1.946 3.42 3.42 0 01-3.138 3.138 3.42 3.42 0 00-1.946.806 3.42 3.42 0 01-4.438 0 3.42 3.42 0 00-1.946-.806 3.42 3.42 0 01-3.138-3.138 3.42 3.42 0 00-.806-1.946 3.42 3.42 0 010-4.438 3.42 3.42 0 00.806-1.946 3.42 3.42 0 013.138-3.138z"></path>
</svg>
</div>
<h3 class="text-xl font-bold orbitron mb-2">Global Leaderboard</h3>
<p class="text-gray-400">Compete with developers worldwide and track your ranking across different categories.</p>
</div>
<!-- Event Tracker -->
<div class="card-hover bg-gray-900/80 rounded-xl p-6 border border-yellow-500/30">
<div class="w-12 h-12 bg-yellow-600 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"></path>
</svg>
</div>
<h3 class="text-xl font-bold orbitron mb-2">Event Tracker</h3>
<p class="text-gray-400">Never miss a contest or coding event with our intelligent notification system.</p>
</div>
<!-- Timeline -->
<div class="card-hover bg-gray-900/80 rounded-xl p-6 border border-indigo-500/30">
<div class="w-12 h-12 bg-indigo-600 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</div>
<h3 class="text-xl font-bold orbitron mb-2">Progress Timeline</h3>
<p class="text-gray-400">Visualize your coding journey with an interactive timeline of achievements and milestones.</p>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-900/80">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-4xl md:text-5xl font-bold orbitron gradient-text mb-8">About CodeTrackPro</h2>
<p class="text-xl text-gray-300 leading-relaxed mb-8">
CodeTrackPro is the ultimate coding companion that brings together all your programming achievements in one sleek, futuristic dashboard.
Whether you're preparing for interviews, participating in contests, or just tracking your daily coding practice,
our AI-powered platform provides the insights you need to level up your skills.
</p>
<div class="flex justify-center">
<a href="dashboard.html" class="glow bg-gradient-to-r from-blue-600 to-purple-600 hover:from-blue-700 hover:to-purple-700 text-white font-bold py-4 px-8 rounded-lg transition-all duration-300 orbitron text-lg">
Start Your Journey
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-800/50">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-4xl md:text-5xl font-bold orbitron gradient-text mb-8">Get In Touch</h2>
<p class="text-xl text-gray-300 mb-8">Ready to transform your coding journey? Let's connect!</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12">
<div class="card-hover bg-gray-900/80 rounded-xl p-6 border border-blue-500/30">
<div class="w-12 h-12 bg-blue-600 rounded-lg flex items-center justify-center mx-auto mb-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 4.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path>
</svg>
</div>
<h3 class="text-lg font-bold orbitron mb-2">Email</h3>
<p class="text-gray-400">contact@codetrackpro.com</p>
</div>
<div class="card-hover bg-gray-900/80 rounded-xl p-6 border border-purple-500/30">
<div class="w-12 h-12 bg-purple-600 rounded-lg flex items-center justify-center mx-auto mb-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"></path>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"></path>
</svg>
</div>
<h3 class="text-lg font-bold orbitron mb-2">Location</h3>
<p class="text-gray-400">Global Remote</p>
</div>
<div class="card-hover bg-gray-900/80 rounded-xl p-6 border border-pink-500/30">
<div class="w-12 h-12 bg-pink-600 rounded-lg flex items-center justify-center mx-auto mb-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"></path>
</svg>
</div>
<h3 class="text-lg font-bold orbitron mb-2">Support</h3>
<p class="text-gray-400">24/7 AI Assistance</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 border-t border-gray-800 py-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="text-2xl font-black orbitron gradient-text mb-4 md:mb-0">CodeTrackPro</div>
<div class="text-gray-400 text-center md:text-left">
© 2025 CodeTrackPro. All rights reserved. | Powered by AI & Passion
</div>
</div>
</div>
</footer>
<!-- Smooth Scroll JavaScript -->
<script>
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Add floating animation to hero stats
const statCards = document.querySelectorAll('.card-hover');
statCards.forEach((card, index) => {
card.style.animationDelay = `${index * 0.2}s`;
card.classList.add('floating');
});
// Add particle movement
const particles = document.querySelectorAll('.particle');
particles.forEach(particle => {
const randomX = Math.random() * 100;
const randomY = Math.random() * 100;
particle.style.left = randomX + '%';
particle.style.top = randomY + '%';
});
</script>
</body>
</html>