aradhyapavan commited on
Commit
bb3d2f2
·
verified ·
1 Parent(s): 95980c5

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +95 -3
templates/index.html CHANGED
@@ -13,9 +13,17 @@
13
  </h1>
14
  <p class="lead">Explore the capabilities of modern NLP models and techniques. Enter your text and select a task to analyze.</p>
15
 
16
- <div class="alert alert-info">
17
- <i class="fas fa-info-circle"></i>
18
- Ultimate guide to all the NLP concepts - Designed and developed by <strong>Aradhya Pavan</strong>
 
 
 
 
 
 
 
 
19
  </div>
20
  </div>
21
  </div>
@@ -319,4 +327,88 @@ document.querySelectorAll('a[href*="/"]').forEach(link => {
319
  }
320
  });
321
  </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
  {% endblock %}
 
13
  </h1>
14
  <p class="lead">Explore the capabilities of modern NLP models and techniques. Enter your text and select a task to analyze.</p>
15
 
16
+ <div class="developer-banner">
17
+ <div class="d-flex align-items-center justify-content-center flex-wrap">
18
+ <span class="me-2">
19
+ <i class="fas fa-graduation-cap text-primary me-1"></i>
20
+ <strong>Ultimate guide to all NLP concepts.</strong>
21
+ </span>
22
+
23
+ <button type="button" class="dev-btn" data-bs-toggle="modal" data-bs-target="#developerModal">
24
+ <i class="fas fa-user-circle me-1"></i>About the developer
25
+ </button>
26
+ </div>
27
  </div>
28
  </div>
29
  </div>
 
327
  }
328
  });
329
  </script>
330
+
331
+ <!-- Developer Modal -->
332
+ <div class="modal fade" id="developerModal" tabindex="-1" aria-labelledby="developerModalLabel" aria-hidden="true">
333
+ <div class="modal-dialog modal-lg">
334
+ <div class="modal-content">
335
+ <div class="modal-header bg-primary text-white">
336
+ <h5 class="modal-title" id="developerModalLabel">
337
+ <i class="fas fa-user-graduate me-2"></i>About the Developer
338
+ </h5>
339
+ <button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
340
+ </div>
341
+ <div class="modal-body p-0">
342
+ <!-- Hero Profile Section -->
343
+ <div class="developer-hero">
344
+ <div class="hero-background"></div>
345
+ <div class="hero-content text-center text-white">
346
+ <div class="profile-image-wrapper">
347
+ <div class="profile-image">
348
+ <i class="fas fa-user-graduate fa-3x"></i>
349
+ </div>
350
+ </div>
351
+ <h3 class="hero-name">Aradhya Pavan H S</h3>
352
+ <p class="hero-title">Full Stack Web Dev & Aspiring AI/ML Engineer</p>
353
+ <p class="hero-education">M.Tech from BITS Pilani in AIML (NLP Specialization)</p>
354
+ </div>
355
+ </div>
356
+
357
+ <!-- Content Section -->
358
+ <div class="modal-content-body p-4">
359
+ <!-- Vision - Full Row -->
360
+ <div class="info-card">
361
+ <div class="info-icon vision">
362
+ <i class="fas fa-lightbulb"></i>
363
+ </div>
364
+ <h6>Vision</h6>
365
+ <p>NLP is the backbone of modern LLMs and SLMs. Understanding it is very important. Built this site to provide intuition of NLP tasks with demonstrations of key modules.</p>
366
+ </div>
367
+
368
+ <!-- Future Plans - Full Row -->
369
+ <div class="info-card">
370
+ <div class="info-icon plans">
371
+ <i class="fas fa-rocket"></i>
372
+ </div>
373
+ <h6>Future Plans</h6>
374
+ <p>I will continue to add more modules and am working to add sections where people, students, and professionals can clearly understand how mathematical algorithms work with example demos and visualizations.</p>
375
+ </div>
376
+
377
+ <!-- Acknowledgments - Full Row -->
378
+ <div class="info-card">
379
+ <div class="info-icon thanks">
380
+ <i class="fas fa-heart"></i>
381
+ </div>
382
+ <h6>Acknowledgments</h6>
383
+ <p>Thanks to the <strong>open source community</strong> and <strong>Hugging Face platform</strong> where we can host such large applications at no cost. This is truly amazing and I'm grateful for it.</p>
384
+ </div>
385
+
386
+ <!-- Social Links -->
387
+ <div class="social-section mt-4">
388
+ <div class="row g-3">
389
+ <div class="col-6">
390
+ <a href="https://www.linkedin.com/in/aradhya-pavan/" target="_blank" class="social-btn linkedin">
391
+ <i class="fab fa-linkedin"></i>
392
+ <span>LinkedIn</span>
393
+ </a>
394
+ </div>
395
+ <div class="col-6">
396
+ <a href="https://github.com/aradhyapavan" target="_blank" class="social-btn github">
397
+ <i class="fab fa-github"></i>
398
+ <span>GitHub</span>
399
+ </a>
400
+ </div>
401
+ </div>
402
+ </div>
403
+ </div>
404
+ </div>
405
+ <div class="modal-footer bg-light">
406
+ <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
407
+ <a href="https://www.linkedin.com/in/aradhya-pavan/" target="_blank" class="btn btn-primary">
408
+ <i class="fab fa-linkedin me-1"></i>Connect
409
+ </a>
410
+ </div>
411
+ </div>
412
+ </div>
413
+ </div>
414
  {% endblock %}