Spaces:
Running
Running
Add 2 files
Browse files- index.html +466 -495
- prompts.txt +2 -0
index.html
CHANGED
@@ -1,595 +1,566 @@
|
|
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>AI
|
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 |
-
|
12 |
-
|
13 |
-
body {
|
14 |
-
font-family: 'Space Grotesk', sans-serif;
|
15 |
-
scroll-behavior: smooth;
|
16 |
}
|
17 |
-
|
18 |
-
|
19 |
-
background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
|
20 |
-
-webkit-background-clip: text;
|
21 |
-
background-clip: text;
|
22 |
-
color: transparent;
|
23 |
}
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
}
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
31 |
}
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
backdrop-filter: blur(10px);
|
37 |
}
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
}
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
}
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
border-radius: 0.5rem;
|
53 |
-
|
54 |
-
|
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 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
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 |
-
|
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 |
-
|
87 |
-
|
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 |
-
|
96 |
-
|
97 |
-
|
98 |
}
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
|
|
|
|
103 |
}
|
104 |
</style>
|
105 |
</head>
|
106 |
-
<body class="
|
107 |
-
<div class="animated-bg"></div>
|
108 |
-
|
109 |
<!-- Navigation -->
|
110 |
-
<nav class="
|
111 |
-
<div class="container mx-auto
|
112 |
-
<div class="flex-
|
113 |
-
<
|
114 |
-
|
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:
|
125 |
-
<
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
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
|
145 |
-
<div class="container mx-auto
|
146 |
-
<div class="
|
147 |
-
<
|
148 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
</div>
|
150 |
</div>
|
151 |
-
<
|
152 |
-
<
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
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="
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
<
|
216 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
-
<!--
|
286 |
-
<section id="
|
287 |
-
<div class="container mx-auto
|
288 |
-
<h2 class="text-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
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 |
-
<!--
|
308 |
-
<div class="
|
309 |
-
<
|
310 |
-
|
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 |
-
<!--
|
324 |
-
<div class="
|
325 |
-
<
|
326 |
-
|
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 |
-
<!--
|
340 |
-
<div class="
|
341 |
-
<
|
342 |
-
|
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 |
-
<!--
|
356 |
-
<div class="
|
357 |
-
<
|
358 |
-
|
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 |
-
<!--
|
372 |
-
<div class="
|
373 |
-
<
|
374 |
-
|
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
|
389 |
-
<a href="#" class="
|
390 |
</div>
|
391 |
</div>
|
392 |
</section>
|
393 |
-
|
394 |
-
<!--
|
395 |
-
<section id="
|
396 |
-
<div class="container mx-auto
|
397 |
-
<h2 class="text-
|
398 |
|
399 |
-
<div class="
|
400 |
-
<div class="
|
401 |
-
|
402 |
-
<
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
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 |
-
|
415 |
-
|
416 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
417 |
</div>
|
418 |
</div>
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
436 |
</div>
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
|
|
|
|
441 |
</div>
|
442 |
</div>
|
443 |
</div>
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
452 |
</div>
|
453 |
</div>
|
454 |
</div>
|
455 |
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
</div>
|
489 |
</div>
|
490 |
</div>
|
491 |
</div>
|
492 |
</div>
|
493 |
</section>
|
494 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
<!-- Footer -->
|
496 |
-
<footer class="
|
497 |
-
<div class="container mx-auto">
|
498 |
-
<div class="
|
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 |
-
<
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
511 |
</div>
|
512 |
</div>
|
|
|
|
|
|
|
513 |
</div>
|
514 |
</footer>
|
515 |
-
|
516 |
<script>
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
// Here we just show a success message
|
523 |
-
const submitBtn = this.querySelector('button[type="submit"]');
|
524 |
-
const originalText = submitBtn.textContent;
|
525 |
|
526 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
527 |
|
528 |
-
//
|
529 |
-
|
530 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
531 |
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
|
|
|
|
550 |
|
|
|
551 |
setTimeout(() => {
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
e.
|
562 |
-
|
563 |
-
|
564 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|