Atulpradhan commited on
Commit
fffa4b6
·
verified ·
1 Parent(s): fbc4f0b

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +368 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Myproject
3
- emoji: 🏆
4
- colorFrom: red
5
- colorTo: purple
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: myproject
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,368 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>CEO of DeepSeek | Visionary Leader</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Space Grotesk', sans-serif;
14
+ background-color: #0f172a;
15
+ color: #e2e8f0;
16
+ overflow-x: hidden;
17
+ }
18
+
19
+ .gradient-text {
20
+ background: linear-gradient(90deg, #38bdf8, #818cf8, #c084fc);
21
+ -webkit-background-clip: text;
22
+ background-clip: text;
23
+ color: transparent;
24
+ }
25
+
26
+ .glow-card {
27
+ box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
28
+ transition: all 0.3s ease;
29
+ }
30
+
31
+ .glow-card:hover {
32
+ box-shadow: 0 0 25px rgba(56, 189, 248, 0.5);
33
+ transform: translateY(-5px);
34
+ }
35
+
36
+ .ai-particle {
37
+ position: absolute;
38
+ background: rgba(56, 189, 248, 0.6);
39
+ border-radius: 50%;
40
+ pointer-events: none;
41
+ }
42
+
43
+ .timeline-item::before {
44
+ content: '';
45
+ position: absolute;
46
+ left: -38px;
47
+ top: 0;
48
+ width: 16px;
49
+ height: 16px;
50
+ border-radius: 50%;
51
+ background: #38bdf8;
52
+ border: 3px solid #0f172a;
53
+ }
54
+
55
+ .typewriter {
56
+ overflow: hidden;
57
+ border-right: .15em solid #38bdf8;
58
+ white-space: nowrap;
59
+ margin: 0 auto;
60
+ letter-spacing: .15em;
61
+ animation:
62
+ typing 3.5s steps(40, end),
63
+ blink-caret .75s step-end infinite;
64
+ }
65
+
66
+ @keyframes typing {
67
+ from { width: 0 }
68
+ to { width: 100% }
69
+ }
70
+
71
+ @keyframes blink-caret {
72
+ from, to { border-color: transparent }
73
+ 50% { border-color: #38bdf8 }
74
+ }
75
+ </style>
76
+ </head>
77
+ <body class="min-h-screen">
78
+ <!-- Floating AI Particles -->
79
+ <div id="particles-container"></div>
80
+
81
+ <!-- Main Container -->
82
+ <div class="container mx-auto px-4 py-12 max-w-6xl">
83
+ <!-- Header Section -->
84
+ <header class="flex flex-col md:flex-row items-center justify-between mb-16">
85
+ <div class="md:w-1/2 mb-8 md:mb-0">
86
+ <h1 class="text-4xl md:text-6xl font-bold mb-4 gradient-text">DeepSeek CEO</h1>
87
+ <h2 class="text-xl md:text-2xl font-medium text-slate-300 mb-6 typewriter">Pioneering the Future of AI</h2>
88
+ <p class="text-slate-400 mb-8 leading-relaxed">
89
+ Visionary leader at the helm of DeepSeek, driving innovation in artificial intelligence and machine learning.
90
+ Committed to developing ethical, transformative AI solutions that benefit humanity.
91
+ </p>
92
+ <div class="flex space-x-4">
93
+ <a href="#" class="px-6 py-3 bg-sky-500 hover:bg-sky-600 rounded-full font-medium transition-all flex items-center">
94
+ <i class="fas fa-envelope mr-2"></i> Contact
95
+ </a>
96
+ <a href="#" class="px-6 py-3 border border-sky-500 text-sky-400 hover:bg-sky-900/30 rounded-full font-medium transition-all flex items-center">
97
+ <i class="fab fa-linkedin-in mr-2"></i> LinkedIn
98
+ </a>
99
+ </div>
100
+ </div>
101
+ <div class="md:w-1/2 flex justify-center">
102
+ <div class="relative">
103
+ <div class="w-64 h-64 md:w-80 md:h-80 rounded-full overflow-hidden border-4 border-sky-500/30 relative glow-card">
104
+ <img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
105
+ alt="CEO Portrait"
106
+ class="w-full h-full object-cover">
107
+ </div>
108
+ <div class="absolute -bottom-6 -right-6 bg-slate-800 px-4 py-2 rounded-lg border border-slate-700 shadow-lg">
109
+ <span class="text-sky-400 font-bold">AI Innovator</span>
110
+ </div>
111
+ </div>
112
+ </div>
113
+ </header>
114
+
115
+ <!-- Stats Section -->
116
+ <section class="grid grid-cols-2 md:grid-cols-4 gap-4 mb-16">
117
+ <div class="bg-slate-800/50 p-6 rounded-xl glow-card">
118
+ <h3 class="text-slate-400 text-sm mb-2">Years in AI</h3>
119
+ <p class="text-3xl font-bold text-sky-400">15+</p>
120
+ </div>
121
+ <div class="bg-slate-800/50 p-6 rounded-xl glow-card">
122
+ <h3 class="text-slate-400 text-sm mb-2">Patents</h3>
123
+ <p class="text-3xl font-bold text-sky-400">42</p>
124
+ </div>
125
+ <div class="bg-slate-800/50 p-6 rounded-xl glow-card">
126
+ <h3 class="text-slate-400 text-sm mb-2">Team Size</h3>
127
+ <p class="text-3xl font-bold text-sky-400">500+</p>
128
+ </div>
129
+ <div class="bg-slate-800/50 p-6 rounded-xl glow-card">
130
+ <h3 class="text-slate-400 text-sm mb-2">AI Models</h3>
131
+ <p class="text-3xl font-bold text-sky-400">28</p>
132
+ </div>
133
+ </section>
134
+
135
+ <!-- About Section -->
136
+ <section class="mb-16">
137
+ <h2 class="text-3xl font-bold mb-8 gradient-text text-center">Leadership Philosophy</h2>
138
+ <div class="grid md:grid-cols-2 gap-8">
139
+ <div class="bg-slate-800/50 p-8 rounded-xl glow-card">
140
+ <div class="text-sky-400 text-4xl mb-4">
141
+ <i class="fas fa-brain"></i>
142
+ </div>
143
+ <h3 class="text-xl font-bold mb-3">Ethical AI Development</h3>
144
+ <p class="text-slate-400">
145
+ Championing responsible AI that prioritizes transparency, fairness, and accountability.
146
+ Implementing rigorous ethical frameworks to ensure AI benefits all of humanity.
147
+ </p>
148
+ </div>
149
+ <div class="bg-slate-800/50 p-8 rounded-xl glow-card">
150
+ <div class="text-sky-400 text-4xl mb-4">
151
+ <i class="fas fa-users"></i>
152
+ </div>
153
+ <h3 class="text-xl font-bold mb-3">Team Empowerment</h3>
154
+ <p class="text-slate-400">
155
+ Fostering a culture of innovation where brilliant minds collaborate to push boundaries.
156
+ Believing that the best ideas emerge from diverse, empowered teams.
157
+ </p>
158
+ </div>
159
+ </div>
160
+ </section>
161
+
162
+ <!-- Timeline Section -->
163
+ <section class="mb-16">
164
+ <h2 class="text-3xl font-bold mb-8 gradient-text text-center">Career Journey</h2>
165
+ <div class="relative">
166
+ <div class="absolute left-8 md:left-1/2 h-full w-0.5 bg-slate-700"></div>
167
+
168
+ <div class="grid md:grid-cols-2 gap-8">
169
+ <!-- Left Side Items -->
170
+ <div class="md:mr-auto md:pr-16 md:text-right">
171
+ <div class="relative pl-12 md:pl-0 md:pr-12 timeline-item mb-8">
172
+ <div class="bg-slate-800/50 p-6 rounded-xl glow-card">
173
+ <h3 class="font-bold text-lg text-sky-400 mb-2">PhD in Computer Science</h3>
174
+ <p class="text-sm text-slate-400 mb-2">Stanford University | 2005-2009</p>
175
+ <p class="text-slate-300">Specialized in neural networks and early AI architectures</p>
176
+ </div>
177
+ </div>
178
+
179
+ <div class="relative pl-12 md:pl-0 md:pr-12 timeline-item mb-8">
180
+ <div class="bg-slate-800/50 p-6 rounded-xl glow-card">
181
+ <h3 class="font-bold text-lg text-sky-400 mb-2">AI Research Scientist</h3>
182
+ <p class="text-sm text-slate-400 mb-2">Google Brain | 2010-2014</p>
183
+ <p class="text-slate-300">Led breakthrough research in deep learning applications</p>
184
+ </div>
185
+ </div>
186
+ </div>
187
+
188
+ <!-- Right Side Items -->
189
+ <div class="md:ml-auto md:pl-16">
190
+ <div class="relative pl-12 timeline-item mb-8">
191
+ <div class="bg-slate-800/50 p-6 rounded-xl glow-card">
192
+ <h3 class="font-bold text-lg text-sky-400 mb-2">Chief AI Officer</h3>
193
+ <p class="text-sm text-slate-400 mb-2">OpenAI | 2015-2018</p>
194
+ <p class="text-slate-300">Directed strategic AI initiatives and ethical guidelines</p>
195
+ </div>
196
+ </div>
197
+
198
+ <div class="relative pl-12 timeline-item">
199
+ <div class="bg-slate-800/50 p-6 rounded-xl glow-card">
200
+ <h3 class="font-bold text-lg text-sky-400 mb-2">Founder & CEO</h3>
201
+ <p class="text-sm text-slate-400 mb-2">DeepSeek | 2019-Present</p>
202
+ <p class="text-slate-300">Building the next generation of transformative AI technologies</p>
203
+ </div>
204
+ </div>
205
+ </div>
206
+ </div>
207
+ </div>
208
+ </section>
209
+
210
+ <!-- Keynote Section -->
211
+ <section class="mb-16">
212
+ <h2 class="text-3xl font-bold mb-8 gradient-text text-center">Recent Keynote</h2>
213
+ <div class="bg-slate-800/50 rounded-xl overflow-hidden glow-card">
214
+ <div class="aspect-w-16 aspect-h-9">
215
+ <div class="w-full h-64 md:h-96 bg-slate-700 flex items-center justify-center">
216
+ <div class="text-center p-8">
217
+ <i class="fas fa-play-circle text-6xl text-sky-400 mb-4 opacity-70"></i>
218
+ <h3 class="text-xl font-bold mb-2">"The Next Decade of AI"</h3>
219
+ <p class="text-slate-400">Global AI Summit 2023</p>
220
+ </div>
221
+ </div>
222
+ </div>
223
+ <div class="p-6">
224
+ <p class="text-slate-300 mb-4">
225
+ In this groundbreaking talk, our CEO outlines the roadmap for AI development over the next decade,
226
+ emphasizing the importance of human-AI collaboration and the ethical imperatives facing our industry.
227
+ </p>
228
+ <div class="flex flex-wrap gap-2">
229
+ <span class="px-3 py-1 bg-slate-700 rounded-full text-sm text-sky-400">#AIEthics</span>
230
+ <span class="px-3 py-1 bg-slate-700 rounded-full text-sm text-sky-400">#FutureTech</span>
231
+ <span class="px-3 py-1 bg-slate-700 rounded-full text-sm text-sky-400">#Innovation</span>
232
+ </div>
233
+ </div>
234
+ </div>
235
+ </section>
236
+
237
+ <!-- Contact Section -->
238
+ <section>
239
+ <h2 class="text-3xl font-bold mb-8 gradient-text text-center">Get In Touch</h2>
240
+ <div class="bg-slate-800/50 p-8 rounded-xl glow-card max-w-2xl mx-auto">
241
+ <form>
242
+ <div class="grid md:grid-cols-2 gap-6 mb-6">
243
+ <div>
244
+ <label for="name" class="block text-slate-400 mb-2">Name</label>
245
+ <input type="text" id="name" class="w-full bg-slate-700 border border-slate-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-sky-500">
246
+ </div>
247
+ <div>
248
+ <label for="email" class="block text-slate-400 mb-2">Email</label>
249
+ <input type="email" id="email" class="w-full bg-slate-700 border border-slate-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-sky-500">
250
+ </div>
251
+ </div>
252
+ <div class="mb-6">
253
+ <label for="subject" class="block text-slate-400 mb-2">Subject</label>
254
+ <input type="text" id="subject" class="w-full bg-slate-700 border border-slate-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-sky-500">
255
+ </div>
256
+ <div class="mb-6">
257
+ <label for="message" class="block text-slate-400 mb-2">Message</label>
258
+ <textarea id="message" rows="4" class="w-full bg-slate-700 border border-slate-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-sky-500"></textarea>
259
+ </div>
260
+ <button type="submit" class="w-full bg-sky-500 hover:bg-sky-600 text-white font-medium py-3 px-6 rounded-lg transition-all flex items-center justify-center">
261
+ <i class="fas fa-paper-plane mr-2"></i> Send Message
262
+ </button>
263
+ </form>
264
+ </div>
265
+ </section>
266
+ </div>
267
+
268
+ <!-- Footer -->
269
+ <footer class="bg-slate-900/50 py-8 mt-16">
270
+ <div class="container mx-auto px-4 text-center">
271
+ <div class="flex justify-center space-x-6 mb-6">
272
+ <a href="#" class="text-slate-400 hover:text-sky-400 transition-all">
273
+ <i class="fab fa-twitter text-xl"></i>
274
+ </a>
275
+ <a href="#" class="text-slate-400 hover:text-sky-400 transition-all">
276
+ <i class="fab fa-linkedin-in text-xl"></i>
277
+ </a>
278
+ <a href="#" class="text-slate-400 hover:text-sky-400 transition-all">
279
+ <i class="fab fa-github text-xl"></i>
280
+ </a>
281
+ <a href="#" class="text-slate-400 hover:text-sky-400 transition-all">
282
+ <i class="fab fa-medium text-xl"></i>
283
+ </a>
284
+ </div>
285
+ <p class="text-slate-500 text-sm">
286
+ © 2023 DeepSeek Technologies. All rights reserved.
287
+ </p>
288
+ </div>
289
+ </footer>
290
+
291
+ <script>
292
+ // Create floating AI particles
293
+ function createParticles() {
294
+ const container = document.getElementById('particles-container');
295
+ const particleCount = 20;
296
+
297
+ for (let i = 0; i < particleCount; i++) {
298
+ const particle = document.createElement('div');
299
+ particle.classList.add('ai-particle');
300
+
301
+ // Random size between 2px and 6px
302
+ const size = Math.random() * 4 + 2;
303
+ particle.style.width = `${size}px`;
304
+ particle.style.height = `${size}px`;
305
+
306
+ // Random position
307
+ particle.style.left = `${Math.random() * 100}vw`;
308
+ particle.style.top = `${Math.random() * 100}vh`;
309
+
310
+ // Random animation
311
+ const duration = Math.random() * 20 + 10;
312
+ particle.style.animation = `float ${duration}s linear infinite`;
313
+
314
+ // Add to container
315
+ container.appendChild(particle);
316
+
317
+ // Animate particle
318
+ animateParticle(particle);
319
+ }
320
+ }
321
+
322
+ function animateParticle(particle) {
323
+ let x = parseFloat(particle.style.left);
324
+ let y = parseFloat(particle.style.top);
325
+ let xSpeed = (Math.random() - 0.5) * 0.2;
326
+ let ySpeed = (Math.random() - 0.5) * 0.2;
327
+
328
+ function move() {
329
+ x += xSpeed;
330
+ y += ySpeed;
331
+
332
+ // Bounce off edges
333
+ if (x <= 0 || x >= 100) xSpeed *= -1;
334
+ if (y <= 0 || y >= 100) ySpeed *= -1;
335
+
336
+ particle.style.left = `${x}vw`;
337
+ particle.style.top = `${y}vh`;
338
+
339
+ requestAnimationFrame(move);
340
+ }
341
+
342
+ move();
343
+ }
344
+
345
+ // Initialize particles when page loads
346
+ window.addEventListener('load', createParticles);
347
+
348
+ // Add animation to timeline items when they come into view
349
+ const timelineItems = document.querySelectorAll('.timeline-item');
350
+
351
+ const observer = new IntersectionObserver((entries) => {
352
+ entries.forEach(entry => {
353
+ if (entry.isIntersecting) {
354
+ entry.target.style.opacity = '1';
355
+ entry.target.style.transform = 'translateY(0)';
356
+ }
357
+ });
358
+ }, { threshold: 0.1 });
359
+
360
+ timelineItems.forEach(item => {
361
+ item.style.opacity = '0';
362
+ item.style.transform = 'translateY(20px)';
363
+ item.style.transition = 'all 0.6s ease';
364
+ observer.observe(item);
365
+ });
366
+ </script>
367
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=Atulpradhan/myproject" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
368
+ </html>