Skip to content

Commit cb45342

Browse files
committed
chore: PIs info
1 parent 1e7bd70 commit cb45342

4 files changed

Lines changed: 47 additions & 5 deletions

File tree

public/Victor.jpeg

6.28 KB
Loading

src/components/PersonCard.jsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,17 @@ function getInitials(name = "") {
1111
}
1212

1313
export default function PersonCard({ member }) {
14+
const imageAlt = member.imageAlt || `${member.name} portrait`;
15+
1416
return (
1517
<article className="person-card">
1618
<div className="person-header">
17-
<div className="person-avatar" aria-hidden="true">
18-
{getInitials(member.name)}
19+
<div className="person-avatar" aria-hidden={member.image ? undefined : "true"}>
20+
{member.image ? (
21+
<img alt={imageAlt} src={member.image} />
22+
) : (
23+
getInitials(member.name)
24+
)}
1925
</div>
2026

2127
<div>

src/data/siteData.js

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,17 +188,39 @@ export const siteData = {
188188
name: "Juan David Hernández Vega",
189189
role: "Principal Investigator",
190190
affiliation: "Cardiff University",
191+
image: "Juan.jpeg",
192+
imageAlt: "",
191193
bio:
192-
"I am a Senior Lecturer (Associate Professor) in the School of Computer Science and Informatics, where I am part of the Human-centred Computing Group and the Director of Postgraduate Research (PGR) studies. Before joining Cardiff University, I had worked in robotics for more than 10 years. During my BSc in electronic engineering (in Cali, Colombia), I worked on developing computationally efficient algorithms to model and simulate a biped robot under the supervision of Prof. Andrés Jaramillo-Botero. Then, during my MSc in robotics and automation (Madrid, Spain) and under the supervision of Prof. Antonio Barrientos, I designed and built a robotic sphere (ROSPHERE), including its software and hardware architectures. Then, I moved to Girona (Catalonia, Spain) to work at a well-known underwater robotics laboratory (CIRS), where I conducted my doctoral research in motion planning for autonomous underwater vehicles (AUVs) under the guidance of Prof. Marc Carreras. In my doctoral research, I focused on AUVs that do not have any a priori map and are required to build one online, while safely navigating through unexplored environments. After completing my PhD in 2017, I joined TNO (Helmond, Netherlands), where I worked as a research robotics engineer. At TNO I was the technical leader for automated valet parking applications. After this experience in industry, I joined Prof. Lydia E. Kavraki's laboratory at Rice University (Houston, USA) in 2018. My research at Rice was mainly focused on developing motion planning techniques to endow robots with better decision-making capabilities for human-robot collaboration scenarios. After completing my postdoctoral research, I joined Apple Inc. and its Special Projects Group (SPG) in 2019. At Apple, I was a senior engineer and I worked on developing tools for simulation of autonomous systems.",
194+
"Senior Lecturer (Associate Professor) in the School of Computer Science and Informatics at Cardiff University, and former Director of Postgraduate Research studies. His research focuses on motion planning, autonomous navigation, robot decision-making, and human-robot collaboration. He has over 10 years of robotics experience across academia and industry, including work on underwater robots, automated valet parking, collaborative robotics, and autonomous systems simulation.",
193195
researchAreas: ["Planning", "Navigation", "Robot Learning"],
194196
links: [
195197
{
196198
label: "Profile",
197-
href: "https://www.cardiff.ac.uk",
199+
href: "https://profiles.cardiff.ac.uk/staff/hernandezvegaj",
200+
},
201+
{
202+
label: "Email",
203+
href: "HernandezVegaJ@cardiff.ac.uk",
204+
},
205+
],
206+
},
207+
{
208+
name: "Victor Romero Cano",
209+
role: "Principal Investigator",
210+
affiliation: "Cardiff University",
211+
image: "Victor.jpeg",
212+
imageAlt: "",
213+
bio:
214+
"I work in Robotics, Artificial Intelligence (AI) and Autonomous Systems in general! I am an academic in the School of Computer Science and Informatics at Cardiff University, within the Human-centred computing research unit. My research focuses on advancing robot perception and machine learning technologies to make autonomous systems ubiquitous and practically useful across diverse real-world environments.",
215+
researchAreas: ["Planning", "Navigation", "Robot Learning"],
216+
links: [
217+
{
218+
label: "Profile",
219+
href: "https://profiles.cardiff.ac.uk/staff/romerocanov",
198220
},
199221
{
200222
label: "Email",
201-
href: "mailto:pi-placeholder@cardiff.ac.uk",
223+
href: " RomeroCanoV@cardiff.ac.uk",
202224
},
203225
],
204226
},
@@ -213,6 +235,8 @@ export const siteData = {
213235
name: "PhD Student Placeholder",
214236
role: "PhD Researcher",
215237
affiliation: "Cardiff University",
238+
image: "",
239+
imageAlt: "",
216240
bio:
217241
"A template profile for a doctoral student, with space for a short project description and research focus.",
218242
researchAreas: ["Human-Robot Interaction", "Perception"],
@@ -227,6 +251,8 @@ export const siteData = {
227251
name: "Second Student Placeholder",
228252
role: "PhD Researcher",
229253
affiliation: "Cardiff University",
254+
image: "",
255+
imageAlt: "",
230256
bio:
231257
"Another placeholder card to show how multiple students will sit together in the same section.",
232258
researchAreas: ["Embodied AI", "Assistive Robotics"],
@@ -248,6 +274,8 @@ export const siteData = {
248274
name: "Collaborator Placeholder",
249275
role: "Research Collaborator",
250276
affiliation: "Partner Institution",
277+
image: "",
278+
imageAlt: "",
251279
bio:
252280
"Use this template for collaborators from other universities, labs, or industry partners connected to the group.",
253281
researchAreas: ["Field Robotics", "Multi-Robot Systems"],

src/styles.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -730,6 +730,14 @@ h1 {
730730
font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
731731
font-size: 1rem;
732732
font-weight: 700;
733+
overflow: hidden;
734+
}
735+
736+
.person-avatar img {
737+
display: block;
738+
width: 100%;
739+
height: 100%;
740+
object-fit: cover;
733741
}
734742

735743
.person-name {

0 commit comments

Comments
 (0)