Asif-code commited on
Commit
e7e055f
·
verified ·
1 Parent(s): 02d077a

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +466 -495
  2. prompts.txt +2 -0
index.html CHANGED
@@ -1,595 +1,566 @@
1
  <!DOCTYPE html>
2
- <html lang="en" data-theme="dark">
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>AI Engineer Portfolio</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
- <link href="https://cdn.jsdelivr.net/npm/daisyui@3.9.4/dist/full.css" rel="stylesheet" type="text/css" />
9
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
10
  <style>
11
- @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
12
-
13
- body {
14
- font-family: 'Space Grotesk', sans-serif;
15
- scroll-behavior: smooth;
16
  }
17
-
18
- .gradient-text {
19
- background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
20
- -webkit-background-clip: text;
21
- background-clip: text;
22
- color: transparent;
23
  }
24
-
25
- .tech-icon {
26
- transition: all 0.3s ease;
27
  }
28
-
29
- .tech-icon:hover {
30
- transform: translateY(-5px);
 
31
  }
32
-
33
- .project-card {
34
- transition: all 0.3s ease;
35
- background: rgba(255, 255, 255, 0.05);
36
- backdrop-filter: blur(10px);
37
  }
38
-
39
- .project-card:hover {
40
- transform: translateY(-10px);
41
- box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
42
  }
43
-
44
- .neon-border {
45
- position: relative;
46
  }
47
-
48
- .neon-border::after {
49
- content: '';
50
- position: absolute;
51
- inset: 0;
 
 
 
 
 
 
 
 
 
 
 
52
  border-radius: 0.5rem;
53
- padding: 2px;
54
- background: linear-gradient(45deg, #3b82f6, #8b5cf6);
55
- -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
56
- -webkit-mask-composite: xor;
57
- mask-composite: exclude;
58
- pointer-events: none;
59
  }
60
-
61
- .animated-bg {
62
- position: absolute;
63
- top: 0;
64
- left: 0;
65
- width: 100%;
66
- height: 100%;
67
- background: linear-gradient(-45deg, #3b82f6, #8b5cf6, #ec4899, #f43f5e);
68
- background-size: 400% 400%;
69
- animation: gradient 15s ease infinite;
70
- opacity: 0.1;
71
- z-index: -1;
72
  }
73
-
74
- @keyframes gradient {
75
- 0% {
76
- background-position: 0% 50%;
77
- }
78
- 50% {
79
- background-position: 100% 50%;
80
- }
81
- 100% {
82
- background-position: 0% 50%;
83
- }
84
  }
85
-
86
- .typewriter {
87
- overflow: hidden;
88
- border-right: 0.15em solid #3b82f6;
89
- white-space: nowrap;
90
- margin: 0 auto;
91
- letter-spacing: 0.15em;
92
- animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
93
  }
94
-
95
- @keyframes typing {
96
- from { width: 0 }
97
- to { width: 100% }
98
  }
99
-
100
- @keyframes blink-caret {
101
- from, to { border-color: transparent }
102
- 50% { border-color: #3b82f6 }
 
 
103
  }
104
  </style>
105
  </head>
106
- <body class="min-h-screen bg-base-100 text-gray-100">
107
- <div class="animated-bg"></div>
108
-
109
  <!-- Navigation -->
110
- <nav class="navbar sticky top-0 z-50 bg-base-100/80 backdrop-blur-md shadow-sm">
111
- <div class="container mx-auto px-4">
112
- <div class="flex-1">
113
- <a href="#" class="btn btn-ghost normal-case text-xl font-bold gradient-text">AI PORTFOLIO</a>
114
- </div>
115
- <div class="flex-none hidden md:block">
116
- <ul class="menu menu-horizontal px-1 space-x-2">
117
- <li><a href="#home" class="hover:text-primary">Home</a></li>
118
- <li><a href="#about" class="hover:text-primary">About</a></li>
119
- <li><a href="#skills" class="hover:text-primary">Skills</a></li>
120
- <li><a href="#projects" class="hover:text-primary">Projects</a></li>
121
- <li><a href="#contact" class="hover:text-primary">Contact</a></li>
122
- </ul>
123
  </div>
124
- <div class="md:hidden">
125
- <div class="dropdown dropdown-end">
126
- <label tabindex="0" class="btn btn-ghost btn-circle">
127
- <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
128
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
129
- </svg>
130
- </label>
131
- <ul tabindex="0" class="menu menu-sm dropdown-content mt-3 z-[1] p-2 shadow bg-base-100 rounded-box w-52">
132
- <li><a href="#home">Home</a></li>
133
- <li><a href="#about">About</a></li>
134
- <li><a href="#skills">Skills</a></li>
135
- <li><a href="#projects">Projects</a></li>
136
- <li><a href="#contact">Contact</a></li>
137
- </ul>
138
- </div>
139
  </div>
 
 
 
140
  </div>
141
  </nav>
142
-
143
  <!-- Hero Section -->
144
- <section id="home" class="min-h-screen flex items-center justify-center px-4">
145
- <div class="container mx-auto text-center">
146
- <div class="avatar mb-8">
147
- <div class="w-40 rounded-full ring ring-primary ring-offset-base-100 ring-offset-2 mx-auto">
148
- <img src="https://images.unsplash.com/photo-1633332755192-727a05c4013d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1180&q=80" alt="AI Engineer" />
 
 
 
 
 
 
 
149
  </div>
150
  </div>
151
- <h1 class="text-5xl md:text-7xl font-bold mb-4">
152
- <span class="gradient-text">Alex Chen</span>
153
- </h1>
154
- <div class="typewriter mb-6">
155
- <h2 class="text-2xl md:text-3xl font-semibold">AI & Machine Learning Engineer</h2>
156
- </div>
157
- <p class="text-lg md:text-xl max-w-2xl mx-auto mb-8">
158
- Building intelligent systems that learn, adapt, and transform industries through cutting-edge artificial intelligence.
159
- </p>
160
- <div class="flex justify-center space-x-4">
161
- <a href="#projects" class="btn btn-primary px-8">View Work</a>
162
- <a href="#contact" class="btn btn-outline px-8">Contact Me</a>
163
- </div>
164
- <div class="mt-12 flex justify-center space-x-6">
165
- <a href="#" class="text-2xl hover:text-primary"><i class="fab fa-github"></i></a>
166
- <a href="#" class="text-2xl hover:text-primary"><i class="fab fa-linkedin"></i></a>
167
- <a href="#" class="text-2xl hover:text-primary"><i class="fab fa-twitter"></i></a>
168
- <a href="#" class="text-2xl hover:text-primary"><i class="fab fa-kaggle"></i></a>
169
- </div>
170
- </div>
171
- </section>
172
-
173
- <!-- About Section -->
174
- <section id="about" class="py-20 px-4">
175
- <div class="container mx-auto max-w-6xl">
176
- <h2 class="text-4xl font-bold text-center mb-16 gradient-text">About Me</h2>
177
- <div class="flex flex-col lg:flex-row items-center gap-12">
178
- <div class="lg:w-1/2">
179
- <div class="mockup-code neon-border">
180
- <pre data-prefix="$"><code>class AI_Engineer:</code></pre>
181
- <pre data-prefix=">" class="text-warning"><code>def __init__(self):</code></pre>
182
- <pre data-prefix=">" class="text-success"><code> self.name = "Alex Chen"</code></pre>
183
- <pre data-prefix=">" class="text-success"><code> self.specialization = "Machine Learning"</code></pre>
184
- <pre data-prefix=">" class="text-success"><code> self.experience = "5+ years"</code></pre>
185
- <pre data-prefix=">" class="text-success"><code> self.education = "MSc in AI, Stanford"</code></pre>
186
- <pre data-prefix=">" class="text-success"><code> self.passion = "Solving complex problems with AI"</code></pre>
187
- <pre data-prefix="$"><code> def transform_ideas_to_ai_solutions(self):</code></pre>
188
- <pre data-prefix=">" class="text-info"><code> return "Innovative AI products"</code></pre>
189
- </div>
190
- </div>
191
- <div class="lg:w-1/2">
192
- <h3 class="text-3xl font-semibold mb-6">Transforming Data Into Intelligence</h3>
193
- <p class="text-lg mb-6">
194
- I'm an AI Engineer with a passion for creating intelligent systems that solve real-world problems.
195
- With expertise in machine learning, deep learning, and natural language processing, I bridge the gap
196
- between cutting-edge research and practical applications.
197
- </p>
198
- <p class="text-lg mb-6">
199
- My journey in AI began during my graduate studies at Stanford, where I focused on neural networks
200
- and their applications in computer vision. Since then, I've worked with startups and Fortune 500
201
- companies to implement AI solutions that drive business value.
202
- </p>
203
- <div class="stats shadow bg-base-200/50 mb-6">
204
- <div class="stat">
205
- <div class="stat-figure text-primary">
206
- <i class="fas fa-project-diagram text-3xl"></i>
207
- </div>
208
- <div class="stat-title">Projects Completed</div>
209
- <div class="stat-value text-primary">42+</div>
210
  </div>
211
- <div class="stat">
212
- <div class="stat-figure text-secondary">
213
- <i class="fas fa-brain text-3xl"></i>
214
- </div>
215
- <div class="stat-title">AI Models Trained</div>
216
- <div class="stat-value text-secondary">150+</div>
 
 
 
 
 
 
 
 
217
  </div>
218
  </div>
219
- <a href="#" class="btn btn-primary">Download Resume</a>
220
- </div>
221
- </div>
222
- </div>
223
- </section>
224
-
225
- <!-- Skills Section -->
226
- <section id="skills" class="py-20 px-4 bg-base-200/30">
227
- <div class="container mx-auto max-w-6xl">
228
- <h2 class="text-4xl font-bold text-center mb-16 gradient-text">Technical Skills</h2>
229
-
230
- <div class="grid grid-cols-2 md:grid-cols-4 gap-6 mb-16">
231
- <div class="tech-icon text-center p-6 rounded-xl bg-base-200/50 hover:bg-base-200/80 transition-all">
232
- <i class="fab fa-python text-6xl mb-4 text-blue-500"></i>
233
- <h3 class="text-xl font-semibold">Python</h3>
234
- <div class="radial-progress text-primary mt-2" style="--value:95; --size:3rem;">95%</div>
235
- </div>
236
- <div class="tech-icon text-center p-6 rounded-xl bg-base-200/50 hover:bg-base-200/80 transition-all">
237
- <i class="fas fa-robot text-6xl mb-4 text-purple-500"></i>
238
- <h3 class="text-xl font-semibold">TensorFlow</h3>
239
- <div class="radial-progress text-secondary mt-2" style="--value:90; --size:3rem;">90%</div>
240
- </div>
241
- <div class="tech-icon text-center p-6 rounded-xl bg-base-200/50 hover:bg-base-200/80 transition-all">
242
- <i class="fas fa-network-wired text-6xl mb-4 text-red-500"></i>
243
- <h3 class="text-xl font-semibold">PyTorch</h3>
244
- <div class="radial-progress text-accent mt-2" style="--value:88; --size:3rem;">88%</div>
245
- </div>
246
- <div class="tech-icon text-center p-6 rounded-xl bg-base-200/50 hover:bg-base-200/80 transition-all">
247
- <i class="fas fa-database text-6xl mb-4 text-green-500"></i>
248
- <h3 class="text-xl font-semibold">SQL</h3>
249
- <div class="radial-progress text-info mt-2" style="--value:85; --size:3rem;">85%</div>
250
- </div>
251
- </div>
252
-
253
- <div class="mb-12">
254
- <h3 class="text-2xl font-semibold mb-6">AI/ML Expertise</h3>
255
- <div class="flex flex-wrap gap-2 mb-8">
256
- <span class="badge badge-primary badge-lg">Deep Learning</span>
257
- <span class="badge badge-primary badge-lg">Computer Vision</span>
258
- <span class="badge badge-primary badge-lg">NLP</span>
259
- <span class="badge badge-primary badge-lg">Generative AI</span>
260
- <span class="badge badge-primary badge-lg">Reinforcement Learning</span>
261
- <span class="badge badge-primary badge-lg">Time Series Analysis</span>
262
- <span class="badge badge-primary badge-lg">Model Optimization</span>
263
- <span class="badge badge-primary badge-lg">MLOps</span>
264
- </div>
265
- </div>
266
-
267
- <div>
268
- <h3 class="text-2xl font-semibold mb-6">Other Technologies</h3>
269
- <div class="flex flex-wrap gap-2">
270
- <span class="badge badge-outline badge-lg">Docker</span>
271
- <span class="badge badge-outline badge-lg">Kubernetes</span>
272
- <span class="badge badge-outline badge-lg">AWS</span>
273
- <span class="badge badge-outline badge-lg">GCP</span>
274
- <span class="badge badge-outline badge-lg">Azure</span>
275
- <span class="badge badge-outline badge-lg">Git</span>
276
- <span class="badge badge-outline badge-lg">CI/CD</span>
277
- <span class="badge badge-outline badge-lg">FastAPI</span>
278
- <span class="badge badge-outline badge-lg">Flask</span>
279
- <span class="badge badge-outline badge-lg">JavaScript</span>
280
  </div>
281
  </div>
282
  </div>
283
  </section>
284
-
285
- <!-- Projects Section -->
286
- <section id="projects" class="py-20 px-4">
287
- <div class="container mx-auto max-w-6xl">
288
- <h2 class="text-4xl font-bold text-center mb-16 gradient-text">Featured Projects</h2>
289
-
290
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
291
- <!-- Project 1 -->
292
- <div class="project-card card bg-base-200 shadow-xl">
293
- <figure><img src="https://images.unsplash.com/photo-1655720828012-58a1a8419f0e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1587&q=80" alt="Medical AI" /></figure>
294
- <div class="card-body">
295
- <h3 class="card-title">MediScan AI</h3>
296
- <p>Deep learning system for early detection of diseases from medical imaging with 94% accuracy.</p>
297
- <div class="card-actions justify-end mt-4">
298
- <span class="badge badge-primary">Computer Vision</span>
299
- <span class="badge badge-primary">Healthcare</span>
300
- </div>
301
- <div class="mt-4">
302
- <a href="#" class="link link-primary">View Case Study →</a>
303
- </div>
304
  </div>
 
 
305
  </div>
306
 
307
- <!-- Project 2 -->
308
- <div class="project-card card bg-base-200 shadow-xl">
309
- <figure><img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1586&q=80" alt="Chatbot" /></figure>
310
- <div class="card-body">
311
- <h3 class="card-title">NeuroChat</h3>
312
- <p>Conversational AI assistant with contextual understanding and emotional intelligence capabilities.</p>
313
- <div class="card-actions justify-end mt-4">
314
- <span class="badge badge-primary">NLP</span>
315
- <span class="badge badge-primary">LLMs</span>
316
- </div>
317
- <div class="mt-4">
318
- <a href="#" class="link link-primary">View Demo →</a>
319
- </div>
320
  </div>
 
 
321
  </div>
322
 
323
- <!-- Project 3 -->
324
- <div class="project-card card bg-base-200 shadow-xl">
325
- <figure><img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80" alt="Finance AI" /></figure>
326
- <div class="card-body">
327
- <h3 class="card-title">FinPredict</h3>
328
- <p>AI-powered financial forecasting system that predicts market trends with 87% accuracy.</p>
329
- <div class="card-actions justify-end mt-4">
330
- <span class="badge badge-primary">Time Series</span>
331
- <span class="badge badge-primary">Finance</span>
332
- </div>
333
- <div class="mt-4">
334
- <a href="#" class="link link-primary">View Research →</a>
335
- </div>
336
  </div>
 
 
337
  </div>
338
 
339
- <!-- Project 4 -->
340
- <div class="project-card card bg-base-200 shadow-xl">
341
- <figure><img src="https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80" alt="Autonomous Vehicle" /></figure>
342
- <div class="card-body">
343
- <h3 class="card-title">AutoDrive</h3>
344
- <p>Computer vision system for autonomous vehicles with real-time object detection and path planning.</p>
345
- <div class="card-actions justify-end mt-4">
346
- <span class="badge badge-primary">CV</span>
347
- <span class="badge badge-primary">Robotics</span>
348
- </div>
349
- <div class="mt-4">
350
- <a href="#" class="link link-primary">View Code →</a>
351
- </div>
352
  </div>
 
 
353
  </div>
354
 
355
- <!-- Project 5 -->
356
- <div class="project-card card bg-base-200 shadow-xl">
357
- <figure><img src="https://images.unsplash.com/photo-1622473590773-f588134b6ce7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1670&q=80" alt="Generative AI" /></figure>
358
- <div class="card-body">
359
- <h3 class="card-title">ArtGenius</h3>
360
- <p>Generative AI platform that creates unique digital artworks based on style and content prompts.</p>
361
- <div class="card-actions justify-end mt-4">
362
- <span class="badge badge-primary">GANs</span>
363
- <span class="badge badge-primary">Creative AI</span>
364
- </div>
365
- <div class="mt-4">
366
- <a href="#" class="link link-primary">View Gallery →</a>
367
- </div>
368
  </div>
 
 
369
  </div>
370
 
371
- <!-- Project 6 -->
372
- <div class="project-card card bg-base-200 shadow-xl">
373
- <figure><img src="https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80" alt="Recommendation System" /></figure>
374
- <div class="card-body">
375
- <h3 class="card-title">RecoMind</h3>
376
- <p>Personalized recommendation engine that increases user engagement by 35% through deep learning.</p>
377
- <div class="card-actions justify-end mt-4">
378
- <span class="badge badge-primary">Recommendation</span>
379
- <span class="badge badge-primary">Personalization</span>
380
- </div>
381
- <div class="mt-4">
382
- <a href="#" class="link link-primary">View Results →</a>
383
- </div>
384
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
385
  </div>
386
  </div>
387
 
388
- <div class="text-center mt-16">
389
- <a href="#" class="btn btn-primary btn-wide">View All Projects</a>
390
  </div>
391
  </div>
392
  </section>
393
-
394
- <!-- Contact Section -->
395
- <section id="contact" class="py-20 px-4 bg-base-200/30">
396
- <div class="container mx-auto max-w-6xl">
397
- <h2 class="text-4xl font-bold text-center mb-16 gradient-text">Get In Touch</h2>
398
 
399
- <div class="flex flex-col lg:flex-row gap-12">
400
- <div class="lg:w-1/2">
401
- <h3 class="text-2xl font-semibold mb-6">Let's Collaborate</h3>
402
- <p class="mb-8 text-lg">
403
- Interested in working together or have questions about my work?
404
- Feel free to reach out through the form or connect with me on social media.
405
- </p>
406
-
407
- <div class="space-y-6">
408
- <div class="flex items-center space-x-4">
409
- <div class="avatar">
410
- <div class="w-12 rounded-full bg-primary text-primary-content">
411
- <i class="fas fa-envelope text-2xl"></i>
412
- </div>
413
  </div>
414
- <div>
415
- <p class="font-semibold">Email</p>
416
- <a href="mailto:alex@aiengineer.com" class="link link-primary">alex@aiengineer.com</a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
417
  </div>
418
  </div>
419
-
420
- <div class="flex items-center space-x-4">
421
- <div class="avatar">
422
- <div class="w-12 rounded-full bg-secondary text-secondary-content">
423
- <i class="fas fa-phone-alt text-2xl"></i>
 
 
 
 
 
 
 
 
 
 
424
  </div>
425
- </div>
426
- <div>
427
- <p class="font-semibold">Phone</p>
428
- <a href="tel:+11234567890" class="link link-secondary">+1 (123) 456-7890</a>
429
  </div>
430
  </div>
431
 
432
- <div class="flex items-center space-x-4">
433
- <div class="avatar">
434
- <div class="w-12 rounded-full bg-accent text-accent-content">
435
- <i class="fas fa-map-marker-alt text-2xl"></i>
 
 
 
 
 
 
436
  </div>
437
- </div>
438
- <div>
439
- <p class="font-semibold">Location</p>
440
- <p>San Francisco, CA</p>
 
 
441
  </div>
442
  </div>
443
  </div>
444
-
445
- <div class="mt-8">
446
- <h4 class="text-xl font-semibold mb-4">Connect With Me</h4>
447
- <div class="flex space-x-4">
448
- <a href="#" class="btn btn-circle btn-primary"><i class="fab fa-linkedin-in"></i></a>
449
- <a href="#" class="btn btn-circle btn-primary"><i class="fab fa-github"></i></a>
450
- <a href="#" class="btn btn-circle btn-primary"><i class="fab fa-twitter"></i></a>
451
- <a href="#" class="btn btn-circle btn-primary"><i class="fab fa-kaggle"></i></a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
452
  </div>
453
  </div>
454
  </div>
455
 
456
- <div class="lg:w-1/2">
457
- <div class="card bg-base-100 shadow-xl">
458
- <div class="card-body">
459
- <form id="contactForm" class="space-y-4">
460
- <div class="form-control">
461
- <label class="label">
462
- <span class="label-text">Name</span>
463
- </label>
464
- <input type="text" placeholder="Your name" class="input input-bordered" required />
465
- </div>
466
- <div class="form-control">
467
- <label class="label">
468
- <span class="label-text">Email</span>
469
- </label>
470
- <input type="email" placeholder="Your email" class="input input-bordered" required />
471
- </div>
472
- <div class="form-control">
473
- <label class="label">
474
- <span class="label-text">Subject</span>
475
- </label>
476
- <input type="text" placeholder="Subject" class="input input-bordered" required />
477
- </div>
478
- <div class="form-control">
479
- <label class="label">
480
- <span class="label-text">Message</span>
481
- </label>
482
- <textarea class="textarea textarea-bordered h-32" placeholder="Your message" required></textarea>
483
- </div>
484
- <div class="form-control mt-6">
485
- <button type="submit" class="btn btn-primary">Send Message</button>
486
- </div>
487
- </form>
 
 
 
 
 
 
 
 
 
 
488
  </div>
489
  </div>
490
  </div>
491
  </div>
492
  </div>
493
  </section>
494
-
 
 
 
 
 
 
 
 
 
 
 
 
495
  <!-- Footer -->
496
- <footer class="footer p-10 bg-base-200 text-base-content">
497
- <div class="container mx-auto">
498
- <div class="flex flex-col md:flex-row justify-between items-center">
499
- <div class="mb-6 md:mb-0">
500
- <a href="#" class="btn btn-ghost normal-case text-xl font-bold gradient-text">AI PORTFOLIO</a>
501
- <p>Alex Chen<br>AI & Machine Learning Engineer</p>
502
- </div>
503
  <div>
504
- <div class="grid grid-flow-col gap-4 mb-4">
505
- <a href="#"><i class="fab fa-github text-2xl"></i></a>
506
- <a href="#"><i class="fab fa-linkedin text-2xl"></i></a>
507
- <a href="#"><i class="fab fa-twitter text-2xl"></i></a>
508
- <a href="#"><i class="fab fa-kaggle text-2xl"></i></a>
509
- </div>
510
- <p>© 2023 Alex Chen. All rights reserved.</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
511
  </div>
512
  </div>
 
 
 
513
  </div>
514
  </footer>
515
-
516
  <script>
517
- // Simple form submission handler
518
- document.getElementById('contactForm').addEventListener('submit', function(e) {
519
- e.preventDefault();
520
-
521
- // In a real application, you would send the form data to a server
522
- // Here we just show a success message
523
- const submitBtn = this.querySelector('button[type="submit"]');
524
- const originalText = submitBtn.textContent;
525
 
526
- submitBtn.innerHTML = '<span class="loading loading-spinner"></span> Sending...';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
527
 
528
- // Simulate API call
529
- setTimeout(() => {
530
- submitBtn.textContent = 'Message Sent!';
 
 
 
 
 
 
531
 
532
- // Reset form and button
533
- setTimeout(() => {
534
- this.reset();
535
- submitBtn.textContent = originalText;
536
-
537
- // Show success toast
538
- const toast = document.createElement('div');
539
- toast.className = 'toast toast-top toast-center';
540
- toast.innerHTML = `
541
- <div class="alert alert-success">
542
- <svg xmlns="http://www.w3.org/2000/svg" class="stroke-current shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24">
543
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
544
- </svg>
545
- <span>Your message has been sent successfully!</span>
546
- </div>
547
- `;
548
-
549
- document.body.appendChild(toast);
 
 
550
 
 
551
  setTimeout(() => {
552
- toast.remove();
553
- }, 3000);
554
- }, 1000);
555
- }, 1500);
556
- });
557
-
558
- // Smooth scrolling for navigation links
559
- document.querySelectorAll('a[href^="#"]').forEach(anchor => {
560
- anchor.addEventListener('click', function (e) {
561
- e.preventDefault();
562
-
563
- document.querySelector(this.getAttribute('href')).scrollIntoView({
564
- behavior: 'smooth'
 
 
 
 
 
 
 
 
565
  });
566
  });
567
  });
568
-
569
- // Theme toggle functionality
570
- const themeToggle = document.createElement('div');
571
- themeToggle.className = 'fixed bottom-4 right-4 z-50';
572
- themeToggle.innerHTML = `
573
- <button class="btn btn-circle btn-primary swap swap-rotate">
574
- <input type="checkbox" id="theme-toggle" />
575
- <svg class="swap-on fill-current w-6 h-6" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
576
- <path d="M5.64,17l-.71.71a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0l.71-.71A1,1,0,0,0,5.64,17ZM5,12a1,1,0,0,0-1-1H3a1,1,0,0,0,0,2H4A1,1,0,0,0,5,12Zm7-7a1,1,0,0,0,1-1V3a1,1,0,0,0-2,0V4A1,1,0,0,0,12,5ZM5.64,7.05a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.71-.71A1,1,0,0,0,4.93,6.34Zm12,.29a1,1,0,0,0,.7-.29l.71-.71a1,1,0,1,0-1.41-1.41L17,5.64a1,1,0,0,0,0,1.41A1,1,0,0,0,17.66,7.34ZM21,11H20a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Zm-9,8a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V20A1,1,0,0,0,12,19ZM18.36,17A1,1,0,0,0,17,18.36l.71.71a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41ZM12,6.5A5.5,5.5,0,1,0,17.5,12,5.51,5.51,0,0,0,12,6.5Zm0,9A3.5,3.5,0,1,1,15.5,12,3.5,3.5,0,0,1,12,15.5Z"/>
577
- </svg>
578
- <svg class="swap-off fill-current w-6 h-6" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
579
- <path d="M21.64,13a1,1,0,0,0-1.05-.14,8.05,8.05,0,0,1-3.37.73A8.15,8.15,0,0,1,9.08,5.49a8.59,8.59,0,0,1,.25-2A1,1,0,0,0,8,2.36,10.14,10.14,0,1,0,22,14.05,1,1,0,0,0,21.64,13Zm-9.5,6.69A8.14,8.14,0,0,1,7.08,5.22v.27A10.15,10.15,0,0,0,17.22,15.63a9.79,9.79,0,0,0,2.1-.22A8.11,8.11,0,0,1,12.14,19.73Z"/>
580
- </svg>
581
- </button>
582
- `;
583
-
584
- document.body.appendChild(themeToggle);
585
-
586
- document.getElementById('theme-toggle').addEventListener('change', function() {
587
- if (this.checked) {
588
- document.documentElement.setAttribute('data-theme', 'light');
589
- } else {
590
- document.documentElement.setAttribute('data-theme', 'dark');
591
- }
592
- });
593
  </script>
594
  <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=Asif-code/portfolio-projects" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
595
  </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>ResearchGPT AI - $2/month AI Research Assistant</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
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
 
 
 
12
  }
13
+ .chat-container {
14
+ height: calc(100vh - 180px);
 
 
 
 
15
  }
16
+ .typing-indicator::after {
17
+ content: '...';
18
+ animation: typing 1.5s infinite;
19
  }
20
+ @keyframes typing {
21
+ 0% { content: '.'; }
22
+ 33% { content: '..'; }
23
+ 66% { content: '...'; }
24
  }
25
+ .markdown-content h1 {
26
+ font-size: 1.5rem;
27
+ font-weight: bold;
28
+ margin: 1rem 0;
 
29
  }
30
+ .markdown-content h2 {
31
+ font-size: 1.25rem;
32
+ font-weight: bold;
33
+ margin: 0.8rem 0;
34
  }
35
+ .markdown-content p {
36
+ margin: 0.5rem 0;
37
+ line-height: 1.6;
38
  }
39
+ .markdown-content ul, .markdown-content ol {
40
+ margin: 0.5rem 0;
41
+ padding-left: 1.5rem;
42
+ }
43
+ .markdown-content li {
44
+ margin: 0.25rem 0;
45
+ }
46
+ .markdown-content code {
47
+ background-color: #f3f4f6;
48
+ padding: 0.2rem 0.4rem;
49
+ border-radius: 0.25rem;
50
+ font-family: monospace;
51
+ }
52
+ .markdown-content pre {
53
+ background-color: #f3f4f6;
54
+ padding: 1rem;
55
  border-radius: 0.5rem;
56
+ overflow-x: auto;
57
+ margin: 0.5rem 0;
 
 
 
 
58
  }
59
+ .markdown-content blockquote {
60
+ border-left: 4px solid #a777e3;
61
+ padding-left: 1rem;
62
+ margin: 0.5rem 0;
63
+ color: #6b7280;
 
 
 
 
 
 
 
64
  }
65
+ .pricing-card {
66
+ transition: all 0.3s ease;
 
 
 
 
 
 
 
 
 
67
  }
68
+ .pricing-card:hover {
69
+ transform: translateY(-5px);
70
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 
 
 
 
 
71
  }
72
+ .feature-list li {
73
+ margin-bottom: 0.5rem;
74
+ position: relative;
75
+ padding-left: 1.5rem;
76
  }
77
+ .feature-list li:before {
78
+ content: "✓";
79
+ position: absolute;
80
+ left: 0;
81
+ color: #6e8efb;
82
+ font-weight: bold;
83
  }
84
  </style>
85
  </head>
86
+ <body class="bg-gray-50 font-sans">
 
 
87
  <!-- Navigation -->
88
+ <nav class="gradient-bg text-white p-4 shadow-md">
89
+ <div class="container mx-auto flex justify-between items-center">
90
+ <div class="flex items-center space-x-2">
91
+ <i class="fas fa-robot text-2xl"></i>
92
+ <h1 class="text-xl font-bold">ResearchGPT AI</h1>
 
 
 
 
 
 
 
 
93
  </div>
94
+ <div class="hidden md:flex items-center space-x-4">
95
+ <a href="#features" class="px-3 py-2 hover:bg-white hover:bg-opacity-20 rounded-md transition">Features</a>
96
+ <a href="#pricing" class="px-3 py-2 hover:bg-white hover:bg-opacity-20 rounded-md transition">Pricing</a>
97
+ <a href="#testimonials" class="px-3 py-2 hover:bg-white hover:bg-opacity-20 rounded-md transition">Testimonials</a>
98
+ <button class="px-4 py-2 bg-white bg-opacity-20 rounded-md hover:bg-opacity-30 transition">
99
+ <i class="fas fa-user mr-2"></i>Sign In
100
+ </button>
 
 
 
 
 
 
 
 
101
  </div>
102
+ <button class="md:hidden text-2xl">
103
+ <i class="fas fa-bars"></i>
104
+ </button>
105
  </div>
106
  </nav>
107
+
108
  <!-- Hero Section -->
109
+ <section class="gradient-bg text-white py-16">
110
+ <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
111
+ <div class="md:w-1/2 mb-8 md:mb-0">
112
+ <h1 class="text-4xl font-bold mb-4">AI-Powered Research Assistant</h1>
113
+ <p class="text-xl mb-6">Write, edit, and improve your research papers with our $2/month AI assistant.</p>
114
+ <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">
115
+ <a href="#pricing" class="px-6 py-3 bg-white text-purple-700 rounded-md font-bold text-center hover:bg-opacity-90 transition">
116
+ Get Started - $2/month
117
+ </a>
118
+ <a href="#demo" class="px-6 py-3 border-2 border-white text-white rounded-md font-bold text-center hover:bg-white hover:bg-opacity-20 transition">
119
+ Try Demo
120
+ </a>
121
  </div>
122
  </div>
123
+ <div class="md:w-1/2">
124
+ <div class="bg-white rounded-lg shadow-xl overflow-hidden">
125
+ <div class="p-4 bg-gray-100 flex items-center">
126
+ <div class="flex space-x-2">
127
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
128
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
129
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  </div>
131
+ <div class="ml-2 text-sm text-gray-600">ResearchGPT - My Paper</div>
132
+ </div>
133
+ <div class="p-4 h-64 overflow-y-auto">
134
+ <div class="markdown-content">
135
+ <h1 class="text-purple-600">The Impact of AI on Academic Research</h1>
136
+ <p>Artificial Intelligence is transforming how researchers work. Our AI assistant can help you:</p>
137
+ <ul>
138
+ <li>Generate literature reviews</li>
139
+ <li>Improve methodology sections</li>
140
+ <li>Suggest relevant citations</li>
141
+ <li>Paraphrase complex ideas</li>
142
+ <li>Format references automatically</li>
143
+ </ul>
144
+ <p class="mt-4">All for just $2/month - less than the cost of a single coffee!</p>
145
  </div>
146
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  </div>
148
  </div>
149
  </div>
150
  </section>
151
+
152
+ <!-- Features Section -->
153
+ <section id="features" class="py-16 bg-white">
154
+ <div class="container mx-auto px-4">
155
+ <h2 class="text-3xl font-bold text-center mb-12">How ResearchGPT Helps You</h2>
156
+ <div class="grid md:grid-cols-3 gap-8">
157
+ <!-- Feature 1 -->
158
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
159
+ <div class="text-purple-600 text-4xl mb-4">
160
+ <i class="fas fa-lightbulb"></i>
 
 
 
 
 
 
 
 
 
 
161
  </div>
162
+ <h3 class="text-xl font-bold mb-2">Idea Generation</h3>
163
+ <p>Overcome writer's block with AI-generated research ideas, hypotheses, and paper outlines tailored to your field.</p>
164
  </div>
165
 
166
+ <!-- Feature 2 -->
167
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
168
+ <div class="text-purple-600 text-4xl mb-4">
169
+ <i class="fas fa-book"></i>
 
 
 
 
 
 
 
 
 
170
  </div>
171
+ <h3 class="text-xl font-bold mb-2">Literature Review</h3>
172
+ <p>Quickly summarize key papers, identify research gaps, and synthesize findings across multiple studies.</p>
173
  </div>
174
 
175
+ <!-- Feature 3 -->
176
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
177
+ <div class="text-purple-600 text-4xl mb-4">
178
+ <i class="fas fa-chart-line"></i>
 
 
 
 
 
 
 
 
 
179
  </div>
180
+ <h3 class="text-xl font-bold mb-2">Methodology Help</h3>
181
+ <p>Get suggestions for appropriate research methods, statistical analyses, and experimental designs.</p>
182
  </div>
183
 
184
+ <!-- Feature 4 -->
185
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
186
+ <div class="text-purple-600 text-4xl mb-4">
187
+ <i class="fas fa-quote-right"></i>
 
 
 
 
 
 
 
 
 
188
  </div>
189
+ <h3 class="text-xl font-bold mb-2">Citation Support</h3>
190
+ <p>Automatically generate properly formatted citations in APA, MLA, Chicago, and other academic styles.</p>
191
  </div>
192
 
193
+ <!-- Feature 5 -->
194
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
195
+ <div class="text-purple-600 text-4xl mb-4">
196
+ <i class="fas fa-spell-check"></i>
 
 
 
 
 
 
 
 
 
197
  </div>
198
+ <h3 class="text-xl font-bold mb-2">Language Polishing</h3>
199
+ <p>Improve academic writing with grammar corrections, vocabulary enhancements, and clarity suggestions.</p>
200
  </div>
201
 
202
+ <!-- Feature 6 -->
203
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm">
204
+ <div class="text-purple-600 text-4xl mb-4">
205
+ <i class="fas fa-clock"></i>
 
 
 
 
 
 
 
 
 
206
  </div>
207
+ <h3 class="text-xl font-bold mb-2">Time Savings</h3>
208
+ <p>Complete writing tasks in minutes instead of hours, allowing you to focus on high-value research work.</p>
209
+ </div>
210
+ </div>
211
+ </div>
212
+ </section>
213
+
214
+ <!-- Pricing Section -->
215
+ <section id="pricing" class="py-16 bg-gray-50">
216
+ <div class="container mx-auto px-4">
217
+ <h2 class="text-3xl font-bold text-center mb-4">Simple, Affordable Pricing</h2>
218
+ <p class="text-center text-gray-600 mb-12">All the AI research assistance you need for less than the cost of a coffee</p>
219
+
220
+ <div class="max-w-md mx-auto bg-white rounded-xl shadow-md overflow-hidden pricing-card">
221
+ <div class="p-8 text-center">
222
+ <div class="uppercase tracking-wide text-sm text-purple-600 font-semibold">Monthly Plan</div>
223
+ <div class="mt-4 flex justify-center items-baseline">
224
+ <span class="text-5xl font-extrabold">$2</span>
225
+ <span class="ml-1 text-xl text-gray-600">/month</span>
226
+ </div>
227
+ <p class="mt-2 text-gray-500">Billed monthly, cancel anytime</p>
228
+
229
+ <div class="mt-6">
230
+ <ul class="feature-list space-y-2 text-left">
231
+ <li>Unlimited AI-assisted writing</li>
232
+ <li>Research paper templates</li>
233
+ <li>Citation generator</li>
234
+ <li>Grammar & style checks</li>
235
+ <li>Literature review assistant</li>
236
+ <li>Methodology suggestions</li>
237
+ <li>24/7 support</li>
238
+ </ul>
239
+ </div>
240
+
241
+ <div class="mt-8">
242
+ <button class="w-full gradient-bg text-white font-bold py-3 px-4 rounded-md hover:opacity-90 transition">
243
+ Get Started Now
244
+ </button>
245
+ </div>
246
+
247
+ <p class="mt-4 text-sm text-gray-500">7-day money back guarantee</p>
248
  </div>
249
  </div>
250
 
251
+ <div class="mt-8 text-center">
252
+ <p class="text-gray-600">Need more? <a href="#" class="text-purple-600 hover:underline">Contact us</a> for institutional pricing</p>
253
  </div>
254
  </div>
255
  </section>
256
+
257
+ <!-- Demo Section -->
258
+ <section id="demo" class="py-16 bg-white">
259
+ <div class="container mx-auto px-4">
260
+ <h2 class="text-3xl font-bold text-center mb-12">Try Our Interactive Demo</h2>
261
 
262
+ <div class="bg-white rounded-lg shadow-xl overflow-hidden max-w-4xl mx-auto">
263
+ <div class="flex flex-col md:flex-row">
264
+ <!-- Editor Panel -->
265
+ <div class="flex-1 border-r">
266
+ <div class="border-b p-3 flex justify-between items-center bg-gray-50">
267
+ <div class="text-sm text-gray-600">research_paper.md</div>
268
+ <div class="flex space-x-2">
269
+ <button class="p-1 text-gray-500 hover:text-purple-600 rounded-md">
270
+ <i class="fas fa-save"></i>
271
+ </button>
 
 
 
 
272
  </div>
273
+ </div>
274
+ <div class="p-4 h-96 overflow-y-auto">
275
+ <div class="markdown-content">
276
+ <h1>The Future of AI in Academic Writing</h1>
277
+ <p>Artificial intelligence is increasingly being used to assist with academic writing tasks. Some key applications include:</p>
278
+
279
+ <h2>1. Automated Literature Reviews</h2>
280
+ <p>AI can quickly analyze thousands of papers to identify relevant studies, summarize findings, and highlight research gaps.</p>
281
+
282
+ <h2>2. Writing Assistance</h2>
283
+ <p>Tools like ResearchGPT help researchers with:</p>
284
+ <ul>
285
+ <li>Grammar and style improvements</li>
286
+ <li>Paraphrasing complex ideas</li>
287
+ <li>Generating paper outlines</li>
288
+ <li>Suggesting appropriate terminology</li>
289
+ </ul>
290
+
291
+ <p class="mt-4">Try asking our AI to improve this section or suggest additional applications!</p>
292
  </div>
293
  </div>
294
+ </div>
295
+
296
+ <!-- Chat Panel -->
297
+ <div class="w-full md:w-96">
298
+ <div class="border-b p-3 bg-gray-50">
299
+ <h3 class="font-medium">Research Assistant</h3>
300
+ </div>
301
+ <div class="h-72 overflow-y-auto p-4 space-y-4" id="demo-chat-messages">
302
+ <!-- AI Message -->
303
+ <div class="flex items-start space-x-2">
304
+ <div class="bg-purple-100 text-purple-800 p-2 rounded-full">
305
+ <i class="fas fa-robot"></i>
306
+ </div>
307
+ <div class="bg-gray-100 rounded-lg p-3 max-w-xs">
308
+ <p>Hi! I'm your ResearchGPT demo assistant. Try asking me to improve a section, suggest citations, or help with methodology!</p>
309
  </div>
 
 
 
 
310
  </div>
311
  </div>
312
 
313
+ <!-- Input Area -->
314
+ <div class="border-t p-3">
315
+ <div class="flex items-center space-x-2">
316
+ <div class="flex-1 relative">
317
+ <input
318
+ type="text"
319
+ id="demo-message-input"
320
+ placeholder="Try: Improve the writing in section 2..."
321
+ class="w-full p-3 pr-10 border rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-300"
322
+ >
323
  </div>
324
+ <button
325
+ id="demo-send-button"
326
+ class="p-3 gradient-bg text-white rounded-md hover:opacity-90 transition"
327
+ >
328
+ <i class="fas fa-paper-plane"></i>
329
+ </button>
330
  </div>
331
  </div>
332
  </div>
333
+ </div>
334
+ </div>
335
+ </div>
336
+ </section>
337
+
338
+ <!-- Testimonials -->
339
+ <section id="testimonials" class="py-16 bg-gray-50">
340
+ <div class="container mx-auto px-4">
341
+ <h2 class="text-3xl font-bold text-center mb-12">What Researchers Say</h2>
342
+
343
+ <div class="grid md:grid-cols-3 gap-8">
344
+ <!-- Testimonial 1 -->
345
+ <div class="bg-white p-6 rounded-lg shadow-sm">
346
+ <div class="flex items-center mb-4">
347
+ <div class="text-yellow-400 text-xl mr-2">
348
+ <i class="fas fa-star"></i>
349
+ <i class="fas fa-star"></i>
350
+ <i class="fas fa-star"></i>
351
+ <i class="fas fa-star"></i>
352
+ <i class="fas fa-star"></i>
353
+ </div>
354
+ </div>
355
+ <p class="mb-4 italic">"ResearchGPT cut my literature review time in half. For $2/month, it's the best investment I've made in my PhD."</p>
356
+ <div class="flex items-center">
357
+ <div class="bg-purple-100 text-purple-800 p-2 rounded-full mr-3">
358
+ <i class="fas fa-user-graduate"></i>
359
+ </div>
360
+ <div>
361
+ <p class="font-semibold">Sarah K.</p>
362
+ <p class="text-sm text-gray-600">PhD Candidate, Computer Science</p>
363
  </div>
364
  </div>
365
  </div>
366
 
367
+ <!-- Testimonial 2 -->
368
+ <div class="bg-white p-6 rounded-lg shadow-sm">
369
+ <div class="flex items-center mb-4">
370
+ <div class="text-yellow-400 text-xl mr-2">
371
+ <i class="fas fa-star"></i>
372
+ <i class="fas fa-star"></i>
373
+ <i class="fas fa-star"></i>
374
+ <i class="fas fa-star"></i>
375
+ <i class="fas fa-star"></i>
376
+ </div>
377
+ </div>
378
+ <p class="mb-4 italic">"The citation generator alone is worth the price. I've recommended it to all my labmates."</p>
379
+ <div class="flex items-center">
380
+ <div class="bg-purple-100 text-purple-800 p-2 rounded-full mr-3">
381
+ <i class="fas fa-flask"></i>
382
+ </div>
383
+ <div>
384
+ <p class="font-semibold">Michael T.</p>
385
+ <p class="text-sm text-gray-600">Research Assistant, Biology</p>
386
+ </div>
387
+ </div>
388
+ </div>
389
+
390
+ <!-- Testimonial 3 -->
391
+ <div class="bg-white p-6 rounded-lg shadow-sm">
392
+ <div class="flex items-center mb-4">
393
+ <div class="text-yellow-400 text-xl mr-2">
394
+ <i class="fas fa-star"></i>
395
+ <i class="fas fa-star"></i>
396
+ <i class="fas fa-star"></i>
397
+ <i class="fas fa-star"></i>
398
+ <i class="fas fa-star-half-alt"></i>
399
+ </div>
400
+ </div>
401
+ <p class="mb-4 italic">"As a non-native English speaker, the language polishing feature has dramatically improved my paper acceptance rates."</p>
402
+ <div class="flex items-center">
403
+ <div class="bg-purple-100 text-purple-800 p-2 rounded-full mr-3">
404
+ <i class="fas fa-user-tie"></i>
405
+ </div>
406
+ <div>
407
+ <p class="font-semibold">Dr. Li Wei</p>
408
+ <p class="text-sm text-gray-600">Professor, Engineering</p>
409
  </div>
410
  </div>
411
  </div>
412
  </div>
413
  </div>
414
  </section>
415
+
416
+ <!-- CTA Section -->
417
+ <section class="gradient-bg text-white py-16">
418
+ <div class="container mx-auto px-4 text-center">
419
+ <h2 class="text-3xl font-bold mb-4">Ready to Transform Your Research?</h2>
420
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Join thousands of researchers who save hours every week with our $2/month AI assistant.</p>
421
+ <button class="px-8 py-3 bg-white text-purple-700 rounded-md font-bold hover:bg-opacity-90 transition text-lg">
422
+ Start Your 7-Day Free Trial
423
+ </button>
424
+ <p class="mt-4 text-sm opacity-80">No credit card required. Cancel anytime.</p>
425
+ </div>
426
+ </section>
427
+
428
  <!-- Footer -->
429
+ <footer class="bg-gray-900 text-white py-8">
430
+ <div class="container mx-auto px-4">
431
+ <div class="grid md:grid-cols-4 gap-8">
 
 
 
 
432
  <div>
433
+ <h3 class="text-lg font-bold mb-4">ResearchGPT AI</h3>
434
+ <p class="text-gray-400">The affordable AI assistant for researchers worldwide.</p>
435
+ </div>
436
+ <div>
437
+ <h4 class="font-bold mb-4">Product</h4>
438
+ <ul class="space-y-2">
439
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li>
440
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li>
441
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Demo</a></li>
442
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Updates</a></li>
443
+ </ul>
444
+ </div>
445
+ <div>
446
+ <h4 class="font-bold mb-4">Resources</h4>
447
+ <ul class="space-y-2">
448
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
449
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Help Center</a></li>
450
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Academic Discount</a></li>
451
+ <li><a href="#" class="text-gray-400 hover:text-white transition">API</a></li>
452
+ </ul>
453
+ </div>
454
+ <div>
455
+ <h4 class="font-bold mb-4">Company</h4>
456
+ <ul class="space-y-2">
457
+ <li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li>
458
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
459
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Privacy</a></li>
460
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Terms</a></li>
461
+ </ul>
462
  </div>
463
  </div>
464
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
465
+ <p>© 2023 ResearchGPT AI. All rights reserved.</p>
466
+ </div>
467
  </div>
468
  </footer>
469
+
470
  <script>
471
+ document.addEventListener('DOMContentLoaded', function() {
472
+ // Demo chat functionality
473
+ const demoMessageInput = document.getElementById('demo-message-input');
474
+ const demoSendButton = document.getElementById('demo-send-button');
475
+ const demoChatMessages = document.getElementById('demo-chat-messages');
 
 
 
476
 
477
+ // Function to add a new message to the demo chat
478
+ function addDemoMessage(message, isUser = false) {
479
+ const messageDiv = document.createElement('div');
480
+ messageDiv.className = `flex items-start space-x-2 ${isUser ? 'justify-end' : ''}`;
481
+
482
+ const avatarDiv = document.createElement('div');
483
+ avatarDiv.className = isUser ?
484
+ 'bg-gray-200 text-gray-800 p-2 rounded-full' :
485
+ 'bg-purple-100 text-purple-800 p-2 rounded-full';
486
+
487
+ const avatarIcon = document.createElement('i');
488
+ avatarIcon.className = isUser ? 'fas fa-user' : 'fas fa-robot';
489
+ avatarDiv.appendChild(avatarIcon);
490
+
491
+ const contentDiv = document.createElement('div');
492
+ contentDiv.className = 'bg-gray-100 rounded-lg p-3 max-w-xs';
493
+ contentDiv.innerHTML = `<p>${message}</p>`;
494
+
495
+ if (isUser) {
496
+ messageDiv.appendChild(contentDiv);
497
+ messageDiv.appendChild(avatarDiv);
498
+ } else {
499
+ messageDiv.appendChild(avatarDiv);
500
+ messageDiv.appendChild(contentDiv);
501
+ }
502
+
503
+ demoChatMessages.appendChild(messageDiv);
504
+ demoChatMessages.scrollTop = demoChatMessages.scrollHeight;
505
+ }
506
 
507
+ // Function to simulate AI response in demo
508
+ function getDemoAIResponse(userMessage) {
509
+ const responses = {
510
+ "improve": "Here's an improved version of section 2:\n\n'AI writing assistants provide valuable support for academic authors through several key functions: (1) enhancing grammatical accuracy and stylistic clarity, (2) rephrasing complex concepts for improved readability, (3) generating structured paper outlines, and (4) recommending discipline-specific terminology.'\n\nWould you like me to implement these changes?",
511
+ "citation": "For citations about AI in academic writing, I recommend:\n\n1. Smith, J. (2022). 'AI Writing Tools in Higher Education'. Journal of Educational Technology, 15(3), 45-67.\n\n2. Lee, H., & Chen, X. (2021). 'The Impact of NLP on Scholarly Communication'. AI Research, 8(2), 112-130.\n\nWould you like me to format these in a specific citation style?",
512
+ "methodology": "For your methodology section, consider including:\n1. Research design (quantitative/qualitative/mixed)\n2. Data collection procedures\n3. AI models/algorithms used\n4. Validation methods\n5. Ethical considerations\n\nWould you like me to generate a detailed methodology section?",
513
+ "abstract": "Here's a draft abstract for your paper:\n\n'This paper examines the transformative potential of artificial intelligence in academic writing. Through analysis of current applications and emerging technologies, we demonstrate how AI tools like ResearchGPT are reducing barriers to scholarly communication while maintaining academic rigor. The study identifies key benefits including time savings, improved language quality, and enhanced literature synthesis capabilities, while also addressing concerns about originality and critical thinking.'",
514
+ "help": "I can help with:\n1. Improving writing quality\n2. Generating citations\n3. Creating paper outlines\n4. Suggesting methodologies\n5. Summarizing literature\n\nWhat would you like help with specifically?"
515
+ };
516
 
517
+ const lowerMessage = userMessage.toLowerCase();
518
+ let response = "I can help improve your research paper in several ways. Try asking me to:\n- 'Improve section 2'\n- 'Suggest citations'\n- 'Help with methodology'\n- 'Write an abstract'\n\nWhat would you like me to do?";
519
+
520
+ for (const [key, value] of Object.entries(responses)) {
521
+ if (lowerMessage.includes(key)) {
522
+ response = value;
523
+ break;
524
+ }
525
+ }
526
+
527
+ return response;
528
+ }
529
+
530
+ // Handle demo send button click
531
+ demoSendButton.addEventListener('click', function() {
532
+ const message = demoMessageInput.value.trim();
533
+ if (message) {
534
+ // Add user message
535
+ addDemoMessage(message, true);
536
+ demoMessageInput.value = '';
537
 
538
+ // Simulate AI thinking
539
  setTimeout(() => {
540
+ // Get and add AI response
541
+ const aiResponse = getDemoAIResponse(message);
542
+ addDemoMessage(aiResponse);
543
+ }, 800);
544
+ }
545
+ });
546
+
547
+ // Handle Enter key press in demo
548
+ demoMessageInput.addEventListener('keypress', function(e) {
549
+ if (e.key === 'Enter') {
550
+ demoSendButton.click();
551
+ }
552
+ });
553
+
554
+ // Smooth scrolling for anchor links
555
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
556
+ anchor.addEventListener('click', function (e) {
557
+ e.preventDefault();
558
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
559
+ behavior: 'smooth'
560
+ });
561
  });
562
  });
563
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
564
  </script>
565
  <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=Asif-code/portfolio-projects" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
566
  </html>
prompts.txt CHANGED
@@ -0,0 +1,2 @@
 
 
 
1
+ Build a Next.js App for ResearchGPT AI App and it should look same UI like Jenni AI
2
+ Build MVP for this Startup idea and Pricing Model of 2$ per month