-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
458 lines (441 loc) · 22.3 KB
/
index.html
File metadata and controls
458 lines (441 loc) · 22.3 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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Amith Acharya</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<!-- New Libraries for Resume -->
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Updated Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="images/favicon.ico">
<style>
/* === MAIN STYLES === */
html {
scroll-behavior: smooth;
font-size: 12px;
}
.main-content h1 {
font-family: 'Montserrat', sans-serif;
font-size: 4.5rem;
font-weight: 700;
}
.main-content h2 {
font-family: 'Montserrat', sans-serif;
font-size: 1.75rem;
font-weight: 500;
margin-top: 10px;
}
.main-content h3 {
font-family: 'Montserrat', sans-serif;
font-size: 1.2rem;
font-weight: 500;
line-height: 1.6;
margin-top: 20px;
}
.action-buttons {
margin-top: 25px;
display: flex;
justify-content: center;
gap: 15px;
}
.action-button {
display: inline-block;
padding: 12px 25px;
border: 2px solid #fff;
border-radius: 25px;
color: #fff;
text-decoration: none;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
transition: all 0.3s ease;
cursor: pointer;
}
.action-button:hover {
background-color: #fff;
color: #333;
}
.contact-section {
margin-top: 30px;
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}
.contact-me-btn {
display: inline-block;
background-color: #fff;
color: #1a202c;
padding: 12px 30px;
border-radius: 25px;
text-decoration: none;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
transition: transform 0.3s ease;
}
.contact-me-btn:hover {
transform: scale(1.05);
}
.social-row {
display: flex;
justify-content: center;
gap: 25px;
align-items: center;
}
.social-icon-link {
color: #fff;
font-size: 2rem;
transition: transform 0.3s ease;
text-decoration: none;
}
.social-icon-link:hover {
transform: scale(1.2);
}
.xda-text-icon {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 1.5rem;
line-height: 2rem;
}
/* === PROJECTS MODAL STYLES === */
#projects-modal .projects-container {
padding: 50px 20px;
background-color: #f8f9fa;
border-radius: 10px;
}
#projects-modal h2 {
text-align: center;
font-family: 'Montserrat', sans-serif;
font-size: 3rem;
font-weight: 700;
margin-bottom: 50px;
color: #333;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
max-width: 1200px;
margin: 0 auto;
}
.project-card {
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
overflow: hidden;
display: flex;
flex-direction: column;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}
.project-image img {
width: 100%;
height: 220px;
object-fit: cover;
}
.project-content {
padding: 25px;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.project-content h3 {
font-family: 'Work Sans', sans-serif;
font-size: 1.5rem;
font-weight: 700;
color: #1e293b;
margin-bottom: 15px;
}
.project-content p {
font-family: 'Work Sans', sans-serif;
font-size: 1rem;
line-height: 1.6;
color: #4a5568;
flex-grow: 1;
}
.project-tech {
margin-top: 20px;
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.project-tech span {
background-color: #e2e8f0;
color: #4a5568;
padding: 5px 10px;
border-radius: 15px;
font-size: 0.8rem;
font-weight: 600;
}
.project-links {
margin-top: 25px;
display: flex;
gap: 15px;
}
.project-links a {
text-decoration: none;
padding: 10px 20px;
border-radius: 20px;
font-weight: 600;
transition: all 0.3s ease;
}
.project-links .live-link {
background-color: #1e293b;
color: #fff;
}
.project-links .live-link:hover {
background-color: #4a5568;
}
.project-links .source-link {
background-color: transparent;
color: #1e293b;
border: 2px solid #1e293b;
}
.project-links .source-link:hover {
background-color: #1e293b;
color: #fff;
}
/* === GENERIC MODAL STYLES === */
.modal-overlay {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow-y: auto;
background-color: rgba(0,0,0,0.6);
padding: 20px;
}
.modal-content {
margin: 5% auto;
width: 95%;
max-width: 1100px;
position: relative;
animation: fadeIn 0.5s;
}
@keyframes fadeIn {
from {opacity: 0; transform: scale(0.95);}
to {opacity: 1; transform: scale(1);}
}
.modal-close {
color: #fff;
background-color: #1a202c;
position: absolute;
top: -15px;
right: -15px;
font-size: 24px;
font-weight: bold;
z-index: 1001;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
border: 2px solid #fff;
transition: all 0.3s ease;
}
.modal-close:hover,
.modal-close:focus {
background-color: #ef4444;
transform: rotate(90deg);
text-decoration: none;
cursor: pointer;
}
/* === RESUME MODAL STYLES === */
#resume-modal .resume-container {
font-family: 'Inter', sans-serif;
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
#resume-modal .resume-section-title {
color: #1e3a8a;
border-bottom: 2px solid #93c5fd;
padding-bottom: 4px;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
}
#resume-modal .tech-tag {
background-color: #e0e7ff;
color: #3730a3;
padding: 2px 8px;
border-radius: 9999px;
font-size: 0.875rem;
font-weight: 500;
}
</style>
</head>
<body>
<div id="particles-js">
<div class="main-content">
<center>
<figure>
<img src="images/profile_img.png" alt="Amith Acharya">
</figure>
<h1>Amith R</h1>
<h2>amith07</h2>
<h3>
23 y.o. Tech Enthusiast<br>
Computer Science Engineer<br>
Driven by Curiosity!<br>
Bengaluru, Karnataka, India
</h3>
<div class="contact-section">
<a href="mailto:amith.r2901@gmail.com" class="contact-me-btn">Contact Me</a>
<div class="social-row">
<a href="https://github.com/amith07" target="_blank" class="social-icon-link"><i class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/in/amith-r/" target="_blank" class="social-icon-link"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://forum.xda-developers.com/member.php?u=10601659" target="_blank" class="social-icon-link xda-text-icon">XDA</a>
</div>
<div class="social-row">
<a href="https://www.instagram.com/theonewhotalks_" target="_blank" class="social-icon-link"><i class="fa-brands fa-instagram"></i></a>
<a href="https://t.me/amith_acharya" target="_blank" class="social-icon-link"><i class="fa-brands fa-telegram"></i></a>
<a href="https://twitter.com/amithacharya_" target="_blank" class="social-icon-link"><i class="fa-brands fa-xing"></i></a>
</div>
</div>
<div class="action-buttons">
<a id="open-projects-btn" class="action-button">My Projects</a>
<a id="open-resume-btn" class="action-button">View My Resume</a>
</div>
</center>
</div>
<footer id="footer">
Amith R
</footer>
</div>
<!-- === PROJECTS MODAL === -->
<div id="projects-modal" class="modal-overlay">
<div class="modal-content">
<span class="modal-close projects-close-btn">×</span>
<div class="projects-container">
<h2>My Projects</h2>
<div class="projects-grid">
<div class="project-card">
<div class="project-image">
<img src="images/lungcancerai.png" alt="Lung Cancer Detection Project">
</div>
<div class="project-content">
<h3>Lung Cancer Detection using CNN</h3>
<p>Engineered a Convolutional Neural Network (CNN) to classify lung CT scan images as benign, malignant, or normal. This project formed the basis for my published research paper.</p>
<div class="project-tech"><span>Python</span><span>TensorFlow</span><span>Pandas</span><span>NumPy</span><span>Scikit-Learn</span></div>
</div>
</div>
<div class="project-card">
<div class="project-image">
<img src="images/wellnessapp.png" alt="Wellness App Project">
</div>
<div class="project-content">
<h3>Wellness App for Digital Detox</h3>
<p>Developed a native Android app using Kotlin to help users monitor and reduce their screen time. Implemented features for usage tracking, goal setting, and a user-friendly dashboard.</p>
<div class="project-tech"><span>Kotlin</span><span>Android Studio</span><span>XML</span></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- === RESUME MODAL === -->
<div id="resume-modal" class="modal-overlay">
<div class="modal-content">
<span class="modal-close resume-close-btn">×</span>
<div class="resume-container bg-white grid grid-cols-12 rounded-lg overflow-hidden">
<!-- Left Sidebar -->
<aside class="col-span-12 md:col-span-4 bg-slate-800 text-white p-8">
<div class="flex flex-col items-center md:items-start text-center md:text-left">
<h1 class="text-5xl font-bold text-blue-300">Amith R</h1>
<p class="text-lg text-slate-300 mt-2">Computer Science Engineer</p>
</div>
<div class="mt-10">
<h2 class="text-xl font-semibold text-blue-300 uppercase tracking-wider">Contact</h2>
<div class="w-16 border-b-2 border-blue-400 my-2"></div>
<ul class="space-y-3 text-slate-300 mt-4 text-base">
<li class="flex items-center"><i class="fas fa-envelope fa-fw w-6 text-blue-300"></i><a href="mailto:amith.r2901@gmail.com" target="_blank" class="hover:text-blue-300 transition-colors">amith.r2901@gmail.com</a></li>
<li class="flex items-center"><i class="fab fa-linkedin fa-fw w-6 text-blue-300"></i><a href="https://linkedin.com/in/amith-r" target="_blank" class="hover:text-blue-300 transition-colors">linkedin.com/in/amith-r</a></li>
<li class="flex items-center"><i class="fab fa-github fa-fw w-6 text-blue-300"></i><a href="https://github.com/amith07" target="_blank" class="hover:text-blue-300 transition-colors">github.com/amith07</a></li>
<li class="flex items-center"><i class="fas fa-map-marker-alt fa-fw w-6 text-blue-300"></i><span>Bengaluru, Karnataka</span></li>
</ul>
</div>
<div class="mt-10">
<h2 class="text-xl font-semibold text-blue-300 uppercase tracking-wider">Education</h2>
<div class="w-16 border-b-2 border-blue-400 my-2"></div>
<div class="mt-4"><h3 class="text-lg font-bold text-slate-100">B.Tech, Computer Science & Engineering</h3><p class="text-base text-slate-300">Dayananda Sagar University</p><p class="text-sm text-slate-400">2021 – 2025 | CGPA: 7.42 / 10.0</p></div>
</div>
<div class="mt-10">
<h2 class="text-xl font-semibold text-blue-300 uppercase tracking-wider">Skills</h2>
<div class="w-16 border-b-2 border-blue-400 my-2"></div>
<div class="mt-4 space-y-4 text-base">
<div><h3 class="font-semibold text-slate-200">Languages</h3><p class="text-slate-300">Python, Java, C++, Kotlin, C, SQL</p></div>
<div><h3 class="font-semibold text-slate-200">Machine Learning</h3><p class="text-slate-300">TensorFlow, Scikit-Learn, Pandas, NumPy, Computer Vision</p></div>
<div><h3 class="font-semibold text-slate-200">Web Development</h3><p class="text-slate-300">React.js, HTML, CSS, MySQL, MongoDB</p></div>
<div><h3 class="font-semibold text-slate-200">Cloud & DevOps</h3><p class="text-slate-300">AWS, GCP, Azure, Git, Jenkins</p></div>
</div>
</div>
<div class="mt-10">
<h2 class="text-xl font-semibold text-blue-300 uppercase tracking-wider">Certifications</h2>
<div class="w-16 border-b-2 border-blue-400 my-2"></div>
<ul class="list-disc list-inside mt-4 space-y-2 text-base text-slate-300">
<li>MathWorks (MATLAB, Simulink)</li><li>Google Developer (Android, Kotlin)</li><li>TensorFlow Developer</li><li>Full Stack Development</li><li>AWS & GCP Fundamentals</li>
</ul>
</div>
</aside>
<main class="col-span-12 md:col-span-8 p-8 bg-white">
<section><h2 class="resume-section-title text-2xl mb-4">Professional Summary</h2><p class="text-base leading-relaxed text-slate-700">A motivated and results-oriented Computer Science student with a strong foundation in Machine Learning, Full-Stack Development, and Android Application Development. Proven ability to take projects from concept to completion, demonstrated through freelance web development, a published research paper, and hands-on internship experience. Eager to apply my skills in software engineering and AI to solve real-world challenges in a dynamic technical environment.</p></section>
<section class="mt-8"><h2 class="resume-section-title text-2xl mb-4">Professional Experience</h2><div class="space-y-6"><article><div class="flex justify-between items-baseline"><h3 class="text-xl font-semibold text-slate-800">Freelance Web Developer</h3><p class="text-sm font-medium text-slate-500">Present</p></div><p class="text-base text-slate-600 italic">Remote</p><ul class="list-disc list-inside mt-2 text-base text-slate-700 space-y-1 leading-relaxed"><li>Develop and deploy custom websites for small businesses, enhancing their digital presence and operational efficiency.</li><li>Build full-stack solutions including e-commerce platforms and appointment booking systems.</li></ul></article><article><div class="flex justify-between items-baseline"><h3 class="text-xl font-semibold text-slate-800">ML Intern</h3><p class="text-sm font-medium text-slate-500">Jan 2025 – May 2025</p></div><p class="text-base text-slate-600 italic">Niyamatek Solutions Private Limited | Bengaluru, India</p><ul class="list-disc list-inside mt-2 text-base text-slate-700 space-y-1 leading-relaxed"><li>Developed a CNN using TensorFlow to classify dermatological conditions from medical imagery.</li><li>Preprocessed and augmented a large dataset of skin lesion images to improve model robustness.</li></ul></article></div></section>
<section class="mt-8"><h2 class="resume-section-title text-2xl mb-4">Projects</h2><div class="space-y-6"><article><h3 class="text-xl font-semibold text-slate-800">Lung Cancer Detection using CNN</h3><p class="mt-1 text-base text-slate-700">Engineered a CNN in Python to classify lung CT scan images as benign, malignant, or normal. This project formed the basis for a published research paper on its effectiveness in early cancer detection.</p><div class="mt-2 flex flex-wrap gap-2"><span class="tech-tag">Python</span><span class="tech-tag">TensorFlow</span><span class="tech-tag">Pandas</span><span class="tech-tag">Scikit-Learn</span></div></article><article><h3 class="text-xl font-semibold text-slate-800">Wellness App for Digital Detox</h3><p class="mt-1 text-base text-slate-700">Developed a native Android app using Kotlin to help users monitor and reduce screen time. Implemented features for usage tracking, goal setting, and a user-friendly dashboard.</p><div class="mt-2 flex flex-wrap gap-2"><span class="tech-tag">Kotlin</span><span class="tech-tag">Android Studio</span><span class="tech-tag">XML</span></div></article></div></section>
<section class="mt-8"><h2 class="resume-section-title text-2xl mb-4">Leadership & Content Creation</h2><article><h3 class="text-xl font-semibold text-slate-800">Founder & Creator, TakeTalks</h3><p class="mt-1 text-base text-slate-700">Create engaging video content for YouTube and Instagram, explaining complex topics in technology, AI, and business. Manage all aspects of content production, demonstrating strong communication and project management skills.</p><div class="mt-2 flex flex-wrap gap-2"><span class="tech-tag">Content Strategy</span><span class="tech-tag">Scriptwriting</span><span class="tech-tag">Video Production</span><span class="tech-tag">Post-Production & Editing</span></div></article></section>
<section class="mt-8"><h2 class="resume-section-title text-2xl mb-4">Publications</h2><article><p class="text-base text-slate-700">R, Amith. (2024). <em>An Advanced Approach to Detect and Classify Lung Nodules using CT Images.</em> 1st International Conference on Machine Learning Algorithms (ICMLA 2024).</p></article></section>
</main>
</div>
</div>
</div>
<!-- === END RESUME MODAL === -->
<script src="js/particles.js"></script>
<script src="js/app.js"></script>
<!-- JavaScript for Modal Functionality -->
<script>
// --- Resume Modal ---
var resumeModal = document.getElementById("resume-modal");
var openResumeBtn = document.getElementById("open-resume-btn");
var closeResumeBtn = resumeModal.querySelector(".resume-close-btn");
openResumeBtn.onclick = function() {
resumeModal.style.display = "block";
}
closeResumeBtn.onclick = function() {
resumeModal.style.display = "none";
}
// --- Projects Modal ---
var projectsModal = document.getElementById("projects-modal");
var openProjectsBtn = document.getElementById("open-projects-btn");
var closeProjectsBtn = projectsModal.querySelector(".projects-close-btn");
openProjectsBtn.onclick = function() {
projectsModal.style.display = "block";
}
closeProjectsBtn.onclick = function() {
projectsModal.style.display = "none";
}
// Close modals if user clicks outside of the content
window.onclick = function(event) {
if (event.target == resumeModal) {
resumeModal.style.display = "none";
}
if (event.target == projectsModal) {
projectsModal.style.display = "none";
}
}
</script>
</body>
</html>