Skip to content

Commit 27767dc

Browse files
committed
further improvements
1 parent d956d40 commit 27767dc

2 files changed

Lines changed: 95 additions & 15 deletions

File tree

_pages/about.md

Lines changed: 94 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,85 @@ redirect_from:
1515
---
1616
{% include page__hero.html %}
1717

18-
## Featured Projects
19-
20-
<div class="grid__wrapper">
21-
{% assign featured = site.portfolio | slice: 0, 3 %}
22-
{% for post in featured %}
23-
<div class="grid__item">
24-
<a href="{{ post.url }}">
25-
<div class="grid__item-image">
26-
<img src="/images/500x300.png" alt="{{ post.title }}">
18+
19+
<div class="section section--projects">
20+
<h2 class="section__title">Featured Projects</h2>
21+
<div class="grid__wrapper">
22+
{% assign featured = site.portfolio | slice: 0, 3 %}
23+
{% for post in featured %}
24+
<div class="grid__item">
25+
<a href="{{ post.url }}">
26+
<div class="grid__item-image">
27+
<img src="/images/500x300.png" alt="{{ post.title }}">
28+
</div>
29+
<div class="grid__item-title">{{ post.title }}</div>
30+
<div class="grid__item-excerpt">{{ post.excerpt | markdownify }}</div>
31+
</a>
2732
</div>
28-
<div class="grid__item-title">{{ post.title }}</div>
29-
<div class="grid__item-excerpt">{{ post.excerpt | markdownify }}</div>
30-
</a>
33+
{% endfor %}
3134
</div>
32-
{% endfor %}
35+
</div>
36+
37+
<div class="section-divider"></div>
38+
39+
<div class="section section--experience">
40+
<h2 class="section__title">Professional Experience</h2>
41+
<!-- Experience content will be rendered here -->
42+
</div>
43+
44+
<div class="section-divider"></div>
45+
46+
<div class="section section--research">
47+
<h2 class="section__title">Research Focus</h2>
48+
<!-- Research content will be rendered here -->
49+
</div>
50+
51+
<div class="section-divider"></div>
52+
53+
<div class="section section--collaborations">
54+
<h2 class="section__title">Collaborations</h2>
55+
<!-- Collaborations content will be rendered here -->
56+
</div>
57+
58+
<div class="section-divider"></div>
59+
60+
<div class="section section--education">
61+
<h2 class="section__title">Education</h2>
62+
<!-- Education content will be rendered here -->
63+
</div>
64+
65+
<div class="section-divider"></div>
66+
67+
<div class="section section--skills">
68+
<h2 class="section__title">Technical Skills</h2>
69+
<!-- Skills content will be rendered here -->
3370
</div>
3471

3572
<style>
73+
.section {
74+
background: #f9f9fb;
75+
border-radius: 12px;
76+
padding: 2rem 2rem 1.5rem 2rem;
77+
margin-bottom: 2.5rem;
78+
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
79+
}
80+
.section__title {
81+
margin-top: 0;
82+
margin-bottom: 1.5rem;
83+
font-size: 1.5rem;
84+
color: #2a2a2a;
85+
letter-spacing: 0.01em;
86+
border-left: 4px solid #4f8cff;
87+
padding-left: 0.75rem;
88+
}
89+
.section-divider {
90+
width: 100%;
91+
height: 2px;
92+
background: linear-gradient(90deg, #4f8cff 0%, #fff 100%);
93+
margin: 2.5rem 0 2rem 0;
94+
border-radius: 2px;
95+
opacity: 0.25;
96+
}
3697
.grid__wrapper {
3798
display: flex;
3899
flex-wrap: wrap;
@@ -65,6 +126,26 @@ redirect_from:
65126
font-size: 0.95rem;
66127
margin-bottom: 1rem;
67128
}
129+
/* Hero CTA button animation */
130+
.page__hero .btn,
131+
.page__hero .cta {
132+
background: #4f8cff;
133+
color: #fff;
134+
border: none;
135+
border-radius: 6px;
136+
padding: 0.75rem 2rem;
137+
font-size: 1.1rem;
138+
font-weight: 600;
139+
box-shadow: 0 2px 8px rgba(79,140,255,0.10);
140+
transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
141+
cursor: pointer;
142+
}
143+
.page__hero .btn:hover,
144+
.page__hero .cta:hover {
145+
background: #2563eb;
146+
transform: translateY(-2px) scale(1.04);
147+
box-shadow: 0 6px 24px rgba(79,140,255,0.18);
148+
}
68149
</style>
69150

70151
I am a Machine Learning Engineer & Neuroimaging Data Scientist with extensive expertise in advanced neuroimaging data analysis, AI-driven medical technologies, and high-performance computing. I lead initiatives in developing and optimizing sophisticated ML/DL models for complex healthcare applications, particularly leveraging cutting-edge neuroimaging techniques. My proficiency spans Python, MATLAB, R, and leading deep learning frameworks. I have a proven track record in building scalable data pipelines, automating intricate neuroimaging workflows, and seamlessly integrating AI solutions into real-world clinical and research applications. My passion lies in driving transformative innovation in health tech, especially within the neurosciences, through data science and machine learning.

_pages/talkmap.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@
55
author_profile: true
66
---
77

8-
<!-- <p>This map is generated from a Jupyter Notebook file in <a href="https://github.com/academicpages/academicpages.github.io/blob/master/talkmap.ipynb">talkmap.ipynb</a>, which mines the location fields in the .md files in _talks/.</p> -->
9-
<!-- <iframe src="/talkmap/map.html" height="700" width="850" style="border:none;"></iframe> -->
8+
<iframe src="/talkmap/map.html" height="700" width="850" style="border:none;"></iframe>

0 commit comments

Comments
 (0)