Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
48 changes: 46 additions & 2 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ footer {
.join-us-section {
background-color: var(--light-bg);
border-radius: 8px;
padding: 3rem;
padding: 3rem 2rem !important;
margin-top: 4rem;
text-align: center;
}
Expand Down Expand Up @@ -1306,4 +1306,48 @@ footer {

.resource-link:hover {
background: #34495e;
}
}

.member-links-grid {
display :grid;
grid-template-columns: repeat(2, 1fr);
gap: 0.75rem 1rem;
padding-left:1.5rem;
padding-bottom: 1.5rem;
}

.member-links-grid a{
display: inline-flex;
align-items: center;
gap:0.5rem;
font-size: 0.9rem;
color: var(--text-color);
text-decoration: none;
padding: 0 0.02rem;
transition: var(--transition);
}

.member-links-grid a i {
color: var(--primary-color);
font-size:1rem;
min-width:1.2rem;
}

.member-links-grid a:hover{
color:var(--primary-color);
background-color: rgba(0,100,177,0.05),

}

.member-links-grid a.read-more{
color: #3498db;
}


@media (max-width: 480px){
.member-links-grid{
grid-template-columns: 1fr;

}
}

Binary file added team members/arshad.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 19 additions & 2 deletions team.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,12 +195,12 @@ <h3>Juan Mayor-Torres</h3>
and have worked on previous postdocs at University College Dublin (UCD) and University of Rhode Island (URI). He is interested in applying Self-Supervised Learning (SSL)
encoders to generalize Deep Learning models for predicting neurally-derived bioytpes associated with PTSD and MDD.
</p>
<div class="member-links">
<div class="member-links-grid">
<a href="mailto:juan.mayortorres@uta.edu"><i class="fas fa-envelope"></i> Email</a>
<a href="https://scholar.google.com/citations?user=8_icoi8AAAAJ&hl=en&oi=ao" target="_blank"><i class="fas fa-graduation-cap"></i> Google Scholar</a>
<a href="https://www.researchgate.net/profile/Juan-Mayor-Torres-2" target="_blank"><i class="fab fa-researchgate"></i> ResearchGate </a>
<a href="https://github.com/meiyor" target="_blank"><i class="fab fa-github"></i> GitHub </a>
<a href="team_members/juan_mayor_torres.html" class="read-more"><i class="fas fa-user"></i> View Profile</a>
<a href="team_members/juan_mayor_torres.html"class = "read-more"><i class="fas fa-user"></i> View Profile</a>
</div>
</div>

Expand Down Expand Up @@ -302,6 +302,23 @@ <h3>Ivan Ramirez</h3>
</div>
</div>

<div class="team-member">
<div class="member-photo">
<img src="team members/arshad.jpeg" alt="Photo of Arshad">
</div>
<h3>Arshad Jafri Shaik Mohammed</h3>
<p class="member-title">Research Assistant</p>
<p class="member-bio">
Arshad holds a Master's degree in Data Science from the University of Texas at Arlington. His research focuses on applying machine learning and AI-driven approaches to biomedical applications, with particular emphasis on cognitive task analysis in psychiatric disorders.
</p>
<div class="member-links">
<a href="mailto:axs7716@mavs.uta.edu"><i class="fas fa-envelope"></i> Email</a>
<a href="https://github.com/ArshadJafri" target="_blank"><i class="fab fa-github"></i> GitHub </a>
<a href="team_members/arshad_jafri.html" class="read-more"><i class="fas fa-user"></i> View Profile</a>

</div>
</div>

<div class="team-member">
<div class="member-photo">
<img src="team members/Hemshankar.png" alt="Hemshankar Laugi">
Expand Down
119 changes: 119 additions & 0 deletions team_members/arshad_jafri.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arshad Jafri - BRAIN Lab @ UTA</title>
<link rel="stylesheet" href="../css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<style>
.member-profile {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
.member-header {
display: flex;
align-items: center;
gap: 2rem;
margin-bottom: 2rem;
}
.member-photo {
width: 200px;
height: 200px;
border-radius: 50%;
overflow: hidden;
}
.member-photo img {
width: 100%;
height: 100%;
object-fit: cover;
}
.member-info {
flex: 1;
}
.member-bio {
line-height: 1.6;
margin-bottom: 2rem;
}
.member-bio p {
margin-bottom: 1rem;
}
.back-link {
display: inline-block;
margin-top: 2rem;
color: #2c3e50;
text-decoration: none;
}
.back-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="logo">
<a href="../index.html">BRAIN Lab @ UTA</a>
</div>
<nav>
<ul class="menu">
<li><a href="../index.html">Home</a></li>
<li><a href="../about.html">About</a></li>
<li><a href="../team.html">Team</a></li>
<li><a href="../publications.html">Publications</a></li>
<li><a href="../projects.html">Projects</a></li>
<li><a href="../contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>

<main>
<section class="member-profile">
<div class="member-header">
<div class="member-photo">
<img src="../team members/arshad.jpeg" alt="Arshad">
</div>
<div class="member-info">
<h1>Arshad Jafri Shaik Mohammed</h1>
<p class="member-title">Research Assistant</p>
<div class="member-links">
<a href="mailto:axs7716@mavs.uta.edu"><i class="fas fa-envelope"></i> Email</a>
</div>
</div>
</div>

<div class="member-bio">
<p>Arshad holds a Master's degree in Data Science from the University of Texas at Arlington, where he specialized in machine learning applications for biomedical research. Prior to his graduate studies, he worked as a Software Developer for two years. His professional experience in software engineering, combined with his passion for AI-driven healthcare innovation, inspired him to pursue advanced research at the intersection of artificial intelligence and clinical neuroscience.</p>
<p>He is especially interested in how AI can enhance our understanding of mental health disorders through computational approaches to neuroimaging, natural language processing, and predictive modeling.</p>
<p>At the BRAIN Lab, Arshad is working on fine-tuning large language models for cognitive task analysis in PTSD research, exploring how advanced NLP techniques can be applied to understand and interpret complex neuropsychological assessments.</p>
<p>Outside of research, Arshad enjoys staying active through regular workouts, enjoying different cuisines over the weekends and meeting new people. He is fluent in English, Urdu, Telugu, and Tamil, can read Arabic, and is currently learning French, reflecting his curiosity about diverse perspectives and cultures.</p>
</div>

<a href="../team.html" class="back-link"><i class="fas fa-arrow-left"></i> Back to Team</a>
</section>
</main>

<footer>
<div class="container">
<div class="footer-content">
<div class="footer-col">
<h3>BRAIN Lab @ UTA</h3>
<p>Biomedical Research in AI and Neuroimaging Laboratory<br>University of Texas at Arlington</p>
</div>
<div class="footer-col">
<h3>Contact</h3>
<p>Email: xi.zhu@uta.edu</p>
</div>
</div>
<div class="copyright">
<p>&copy; 2024 BRAIN Lab. All rights reserved.</p>
</div>
</div>
</footer>

<script src="../js/script.js"></script>
</body>
</html>