-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
355 lines (342 loc) · 17.6 KB
/
index.html
File metadata and controls
355 lines (342 loc) · 17.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nagarjun T S - Portfolio</title>
<link rel="icon" type="image/png" href="assets/img/Logo.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="assets/css/index.css">
<script src="assets/js/index.js" defer></script>
</head>
<body>
<!-- Background Watermark -->
<div class="watermark"></div>
<!-- Navbar -->
<nav class="navbar">
<div class="nav-container">
<div class="logo">
<img src="assets/img/Logo.png" alt="Logo"
style="height: 40px; width: auto; margin-right: 10px; vertical-align: middle;">
<span>Nagarjun</span>
</div>
<div class="nav-right">
<ul class="nav-links" id="navLinks">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#certifications">Certifications</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<button id="theme-toggle" aria-label="Toggle Dark Mode">
<i class="fas fa-moon"></i>
</button>
<div class="mobile-menu" id="mobile-menu-btn">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero reveal">
<div class="hero-content">
<h1>Hello, I'm <span class="gradient-text">Nagarjun T S</span></h1>
<p>AI Enthusiast | Data Scientist | Cloud Engineer</p>
<a href="#about" class="scroll-indicator" aria-label="Scroll Down">
<i class="fas fa-chevron-down" style="font-size: 2rem; color: var(--primary);"></i>
</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="reveal">
<h2 class="section-title">About Me</h2>
<div class="about-content">
<div class="profile-card">
<p style="line-height: 1.8;">An AI/ML Engineer with extensive hands-on experience in building and
deploying Generative AI solutions for real-world applications. Skilled in leveraging cloud platforms
for scalable model training, deployment, and orchestration. Strong expertise in Retrieval-Augmented
Generation (RAG), prompt engineering, and LLM integration across diverse domains. Continuously
exploring the latest advancements in AI systems, agents, and automation frameworks, with a focus on
delivering efficient, production-grade GenAI workflows that bridge innovation and practicality.</p>
<h3 style="margin-top: 2rem; color: var(--primary);">Education</h3>
<p style="margin-top: 1rem;">B.E. in Computer Science<br>Sri Siddhartha Institute of
Technology<br><em>CGPA: 7.14/10</em></p>
</div>
<div class="skills-grid">
<div class="skill-category">
<h3>LLM Development</h3>
<p>Prompt Engineering, RAG Systems, Fine-tuning (LoRA, QLoRA), Agentic Workflows</p>
</div>
<div class="skill-category">
<h3>Frameworks & Libraries</h3>
<p>LangChain, LangGraph, LlamaIndex, OpenAI Agents SDK</p>
</div>
<div class="skill-category">
<h3>Model Deployment</h3>
<p>FastAPI, Flask, vLLM, Vector DBs (Pinecone, Chroma, PgVector)</p>
</div>
<div class="skill-category">
<h3>GenAI Architectures</h3>
<p>Transformers, Encoder-Decoder, Tokenization, Embedding Models</p>
</div>
</div>
</div>
</section>
<!-- Experience -->
<section id="experience" class="reveal">
<h2 class="section-title">Experience</h2>
<div class="exp-timeline">
<div class="exp-card">
<h3 style="color: var(--primary);">Acelucid Technologies Inc.</h3>
<p style="font-weight: 600; margin: 0.5rem 0;">AI/ML Engineer</p>
<p style="color: var(--gray);">May 2025 - Present</p>
<p style="margin-top: 1rem;">Led design and development of multiple GenAI systems. Built high-speed quiz
generation engine and intelligent healthcare chatbots.</p>
<a href="https://www.acelucid.com/" target="_blank" class="project-tag"
style="text-decoration: none; display: inline-block; margin-top: 1rem;">View Company Info</a>
</div>
<div class="exp-card">
<h3 style="color: var(--primary);">LTIMindtree</h3>
<p style="font-weight: 600; margin: 0.5rem 0;">Cloud Infrastructure Engineer</p>
<p style="color: var(--gray);">March 2022 - March 2025</p>
<p style="margin-top: 1rem;">Took ownership of incidents in Azure HDInsight clusters. Conducted root
cause analysis using KQL and maintained Power BI dashboards.</p>
<a href="https://www.ltimindtree.com/" target="_blank" class="project-tag"
style="text-decoration: none; display: inline-block; margin-top: 1rem;">View Company Info</a>
</div>
<div class="exp-card">
<h3 style="color: var(--primary);">Rabtul Pvt. Ltd.</h3>
<p style="font-weight: 600; margin: 0.5rem 0;">Web Developer Associate</p>
<p style="color: var(--gray);">September - December 2021</p>
<p style="margin-top: 1rem;">Frontend development focusing on designing interactive Web-based UI/UX
using HTML, CSS, JS.</p>
<a href="https://rabtul.in/" target="_blank" class="project-tag"
style="text-decoration: none; display: inline-block; margin-top: 1rem;">View Company Info</a>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="portfolio reveal">
<h2 class="section-title">Portfolio</h2>
<div class="filter-buttons">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="genai">GenAI</button>
<button class="filter-btn" data-filter="datascience">Data Science</button>
<button class="filter-btn" data-filter="web">Websites</button>
<button class="filter-btn" data-filter="design">Design</button>
<button class="filter-btn" data-filter="blockchain">Blockchain</button>
</div>
<div class="projects-grid">
<div class="project-card genai">
<img src="https://images.unsplash.com/photo-1488190211105-8b0e65b80b4e?w=400" alt="Project"
class="project-img">
<div class="project-info">
<h3>MindMentor</h3>
<span class="project-tag">GenAI</span>
</div>
</div>
<div class="project-card genai">
<img src="https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=400" alt="Project"
class="project-img">
<div class="project-info">
<h3>Sygnal Chatbot</h3>
<span class="project-tag">OpenAI Agents</span>
</div>
</div>
<div class="project-card genai">
<img src="https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=400" alt="Project"
class="project-img">
<div class="project-info">
<h3>Quotation Consultants (QuoCo)</h3>
<span class="project-tag">RAG System</span>
</div>
</div>
<div class="project-card genai">
<img src="https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=400" alt="Project"
class="project-img">
<div class="project-info">
<h3>DeepSky Divers</h3>
<span class="project-tag">AI/ML</span>
</div>
</div>
<div class="project-card datascience">
<img src="assets/img/yolov9.png" alt="Project" class="project-img">
<div class="project-info">
<h3>YOLOv9 Custom Dataset</h3>
<span class="project-tag">Machine Learning</span>
</div>
</div>
<div class="project-card datascience">
<img src="assets/img/AmazonReview.png" alt="Project" class="project-img">
<div class="project-info">
<h3>Amazon Review Classification</h3>
<span class="project-tag">NLP</span>
</div>
</div>
<div class="project-card datascience">
<img src="assets/img/Venue.png" alt="Project" class="project-img">
<div class="project-info">
<h3>Venue Data Visualization</h3>
<span class="project-tag">Data Science</span>
</div>
</div>
<div class="project-card datascience">
<img src="assets/img/LeisureHubs.png" alt="Project" class="project-img">
<div class="project-info">
<h3>Leisure Hub Detection</h3>
<span class="project-tag">Analytics</span>
</div>
</div>
<div class="project-card web">
<img src="assets/img/GosalaAgro.png" alt="Project" class="project-img">
<div class="project-info">
<h3>Gosala Agro Products</h3>
<span class="project-tag">Web Development</span>
</div>
</div>
<div class="project-card web">
<img src="assets/img/GreenSmaran.png" alt="Project" class="project-img">
<div class="project-info">
<h3>Smaran Pyrolysis Tech</h3>
<span class="project-tag">Web Development</span>
</div>
</div>
<div class="project-card web">
<img src="assets/img/BloodLives.png" alt="Project" class="project-img">
<div class="project-info">
<h3>BloodLives Platform</h3>
<span class="project-tag">Web App</span>
</div>
</div>
<div class="project-card design">
<img src="assets/img/ChattersCrew.png" alt="Project" class="project-img">
<div class="project-info">
<h3>ChattersCrew</h3>
<span class="project-tag">UI/UX Design</span>
</div>
</div>
<div class="project-card design">
<img src="assets/img/Codetero.png" alt="Project" class="project-img">
<div class="project-info">
<h3>CodeTero</h3>
<span class="project-tag">App Design</span>
</div>
</div>
<div class="project-card blockchain">
<img src="assets/img/AgriculturalSupplychain.png" alt="Project" class="project-img">
<div class="project-info">
<h3>Agricultural Supply Chain</h3>
<span class="project-tag">Blockchain</span>
</div>
</div>
</div>
</section>
<!-- Certifications -->
<section id="certifications" class="reveal">
<h2 class="section-title">Certifications</h2>
<div class="cert-grid">
<a href="#" class="cert-card" target="_blank">
<i class="fab fa-microsoft cert-icon"></i>
<h3>LTIMindtree: GenAI Foundation</h3>
<p style="color: var(--gray); margin-top: 0.5rem;">August 2024</p>
</a>
<a href="https://www.cloudskillsboost.google/public_profiles/486a5267-f19f-4df7-9da5-a0888708606a/badges/8992189"
class="cert-card" target="_blank">
<i class="fab fa-google cert-icon"></i>
<h3>Google Certified: LLMs & GenAI</h3>
<p style="color: var(--gray); margin-top: 0.5rem;">May 2024</p>
</a>
<a href="https://learn.microsoft.com/api/credentials/share/en-us/NagarjunTS-08/BCBAB34487AA9DBC?sharingId=449DB553769BC78"
class="cert-card" target="_blank">
<i class="fab fa-microsoft cert-icon"></i>
<h3>Azure AI Fundamentals</h3>
<p style="color: var(--gray); margin-top: 0.5rem;">September 2023</p>
</a>
<a href="#" class="cert-card" target="_blank">
<i class="fab fa-microsoft cert-icon"></i>
<h3>Azure Data Fundamentals</h3>
<p style="color: var(--gray); margin-top: 0.5rem;">January 2025</p>
</a>
<a href="https://learn.microsoft.com/api/credentials/share/en-us/NagarjunTS-08/4BA65BA09AD7124A?sharingId=449DB553769BC78"
class="cert-card" target="_blank">
<i class="fab fa-microsoft cert-icon"></i>
<h3>Azure Fundamentals</h3>
<p style="color: var(--gray); margin-top: 0.5rem;">June 2023</p>
</a>
<a href="https://learn.microsoft.com/api/credentials/share/en-us/NagarjunTS-08/B0545C1155126C11?sharingId=449DB553769BC78"
class="cert-card" target="_blank">
<i class="fab fa-microsoft cert-icon"></i>
<h3>Microsoft 365 Fundamentals</h3>
<p style="color: var(--gray); margin-top: 0.5rem;">February 2023</p>
</a>
</div>
</section>
<!-- Contact -->
<section id="contact" class="reveal">
<h2 class="section-title">Get In Touch</h2>
<div class="contact-content">
<div class="contact-info">
<div class="contact-item">
<i class="fas fa-phone"></i>
<a href="tel:+918217721298" style="text-decoration: none; color: inherit;"><span>+91
8217721298</span></a>
</div>
<div class="contact-item">
<i class="fas fa-envelope"></i>
<a href="mailto:nagarjunts008@gmail.com"
style="text-decoration: none; color: inherit;"><span>nagarjunts008@gmail.com</span></a>
</div>
</div>
<div class="social-links">
<a href="https://github.com/nagarjunts008" class="social-link" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://learn.microsoft.com/en-us/users/nagarjunts-08/" class="social-link" target="_blank">
<i class="fab fa-microsoft"></i>
</a>
<a href="https://www.linkedin.com/in/nagarjun-ts/" class="social-link" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://twitter.com/nagarjunts008" class="social-link" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.instagram.com/nagarjun.ts/" class="social-link" target="_blank">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.facebook.com/nagarjun.ts" class="social-link" target="_blank">
<i class="fab fa-facebook"></i>
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2025 Nagarjun T S. All rights reserved.</p>
</footer>
<!-- Project Modal -->
<div id="project-modal" class="modal">
<div class="modal-content">
<span class="close-modal">×</span>
<img src="" alt="Project Image" class="modal-img">
<h3 class="modal-title"></h3>
<p class="project-date" style="color: var(--primary); font-size: 0.9rem; margin-bottom: 0.5rem;"></p>
<p class="modal-desc"></p>
<div class="tech-stack-container" style="margin: 1rem 0;">
<h4 style="font-size: 1rem; margin-bottom: 0.5rem;">Tech Stack:</h4>
<div class="modal-tags"></div>
</div>
<div class="modal-links">
<a href="#" class="modal-btn live-btn" target="_blank"><i class="fas fa-external-link-alt"></i> Live
Demo</a>
</div>
</div>
</div>
</body>
</html>