-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
233 lines (215 loc) · 10.5 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Akshatha Mohan - Visual AI Researcher</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');
body {
font-family: 'Raleway', sans-serif;
background-color: #0f0f0f;
color: #ffffff;
overflow-x: hidden;
}
.gradient-text {
background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.animated-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, #1a1a1a, #2c2c2c);
z-index: -1;
animation: gradientShift 10s ease infinite;
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.nav-link {
position: relative;
display: inline-block;
}
.nav-link::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
bottom: -4px;
left: 0;
background-color: #4ecdc4;
transform: scaleX(0);
transform-origin: bottom right;
transition: transform 0.3s ease-out;
}
.nav-link:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}
.profile-img {
border: 4px solid #4ecdc4;
box-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}
.advisor-link {
position: relative;
color: #4ecdc4; /* This is a teal color matching your theme */
text-decoration: none;
transition: color 0.3s ease;
}
.advisor-link::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
bottom: -2px;
left: 0;
background-color: #4ecdc4;
transform: scaleX(0);
transform-origin: bottom right;
transition: transform 0.3s ease-out;
}
.advisor-link:hover {
color: #ff6b6b; /* This is a pink color for hover state */
}
.advisor-link:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}
.card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border-radius: 15px;
transition: all 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.social-icon {
font-size: 1.5rem;
color: #ffffff;
transition: color 0.3s ease;
}
.social-icon:hover {
color: #4ecdc4;
}
</style>
</head>
<body class="min-h-screen flex flex-col">
<div class="animated-bg"></div>
<header class="py-4">
<nav class="container mx-auto px-6">
<ul class="flex justify-center space-x-8">
<li><a href="#" class="nav-link text-lg hover:text-gray-300 transition duration-300">Home</a></li>
<li><a href="publications.html" class="nav-link text-lg hover:text-gray-300 transition duration-300">Publications</a></li>
<li><a href="projects.html" class="nav-link text-lg hover:text-gray-300 transition duration-300">Projects</a></li>
<li><a href="experience.html" class="nav-link text-lg hover:text-gray-300 transition duration-300">Experience</a></li>
</ul>
</nav>
</header>
<main class="flex-grow flex items-center justify-center">
<div class="container mx-auto px-6 py-12 text-center">
<img src="images/avatar.jpg" alt="Akshatha Mohan" class="profile-img w-64 h-64 rounded-full mx-auto mb-8 object-cover">
<h1 class="text-5xl font-bold mb-4 gradient-text">Akshatha Mohan</h1>
<p class="text-xl mb-4">Masters student at Texas A&M University</p>
<!-- Social Media Links -->
<div class="flex justify-center space-x-6 mb-8">
<a href="https://scholar.google.com/citations?user=GF29N0wAAAAJ&hl=en" target="_blank" class="social-icon">
<i class="fas fa-graduation-cap"></i>
</a>
<a href="https://www.linkedin.com/in/akshatha-mohan-495972188/" target="_blank" class="social-icon">
<i class="fab fa-linkedin"></i>
</a>
</div>
<div class="flex justify-center space-x-4 mb-12">
<a href="Akshatha_Mohan_PhD_applicant.pdf" target="_blank" class="bg-gradient-to-r from-pink-500 to-purple-500 text-white px-6 py-2 rounded-full hover:from-purple-500 hover:to-pink-500 transition duration-300">View Resume</a>
<div id="contactModal" class="fixed z-10 inset-0 overflow-y-auto hidden" aria-labelledby="modal-title" role="dialog" aria-modal="true">
<div class="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0">
<div class="fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity" aria-hidden="true"></div>
<span class="hidden sm:inline-block sm:align-middle sm:h-screen" aria-hidden="true">​</span>
<div class="inline-block align-bottom bg-white rounded-lg text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-lg sm:w-full">
<div class="bg-white px-4 pt-5 pb-4 sm:p-6 sm:pb-4">
<div class="sm:flex sm:items-start">
<div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left">
<h3 class="text-lg leading-6 font-medium text-gray-900" id="modal-title">
Contact Information
</h3>
<div class="mt-2">
<p class="text-sm text-gray-500">
Email: <a href="mailto:[email protected]" class="text-blue-600">[email protected]</a>
</p>
<p class="text-sm text-gray-500">
Phone: <a href="tel:+13322518896" class="text-blue-600">(+1) 332-251-8896</a>
</p>
</div>
</div>
</div>
</div>
<div class="bg-gray-50 px-4 py-3 sm:px-6 sm:flex sm:flex-row-reverse">
<button type="button" class="mt-3 w-full inline-flex justify-center rounded-md border border-gray-300 shadow-sm px-4 py-2 bg-white text-base font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 sm:mt-0 sm:ml-3 sm:w-auto sm:text-sm" onclick="closeModal()">
Close
</button>
</div>
</div>
</div>
</div>
<!-- Modify the Contact button in your main content -->
<a href="#" onclick="openModal()" class="bg-gradient-to-r from-blue-500 to-teal-500 text-white px-6 py-2 rounded-full hover:from-teal-500 hover:to-blue-500 transition duration-300">Contact</a>
<!-- Add this script just before the closing </body> tag -->
<script>
function openModal() {
document.getElementById('contactModal').classList.remove('hidden');
}
function closeModal() {
document.getElementById('contactModal').classList.add('hidden');
}
// Close the modal if the user clicks outside of it
window.onclick = function(event) {
var modal = document.getElementById('contactModal');
if (event.target == modal) {
closeModal();
}
}
</script>
</div>
<!-- Add this modal HTML just before the closing </body> tag -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="card p-6">
<h3 class="text-2xl font-semibold mb-2">Research Focus</h3>
<p>Developing advanced computer vision and machine learning techniques for texture analysis, object detection, and explainable AI in biomedical and agricultural imaging applications.</p>
</div>
<div class="card p-6">
<h3 class="text-2xl font-semibold mb-2">Current Work</h3>
<p>Machine Learning Research Assistant at Texas A&M University's Advanced Vision and Learning Lab advised by <a href="https://www.joshpeeples.com/aboutme/" class="advisor-link">Dr. Peeples</a></p>
</div>
<div class="card p-6">
<h3 class="text-2xl font-semibold mb-2">Aspirations</h3>
<p>I am passionate about developing innovative computer vision and machine learning algorithms for analyzing complex medical data, with the ultimate aim of developing clinically translatable tools that enhance diagnostic accuracy, personalize treatment strategies, and improve patient outcomes across diverse healthcare domains.</p>
</div>
</div>
</div>
</main>
<footer class="py-4 text-center text-gray-500">
<p>© 2024 Akshatha Mohan. All rights reserved.</p>
</footer>
<script>
document.querySelectorAll('.card').forEach(card => {
card.addEventListener('mouseenter', () => {
card.style.transform = 'scale(1.05)';
});
card.addEventListener('mouseleave', () => {
card.style.transform = 'scale(1)';
});
});
</script>
</body>
</html>