Skip to content

Commit 4b4ea60

Browse files
committed
Add organizers' pictures for CPS-IoT Week tutorial.
1 parent df1307f commit 4b4ea60

File tree

4 files changed

+40
-66
lines changed

4 files changed

+40
-66
lines changed

src/pages/events/cpsweek-2026-tutorial.tsx

Lines changed: 40 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ interface Organizer {
5757
email: string;
5858
website: string;
5959
bio: string;
60+
image: string;
6061
}
6162

6263
const organizers: Organizer[] = [
@@ -65,20 +66,23 @@ const organizers: Organizer[] = [
6566
affiliation: "Arizona State University, USA",
6667
email: "hokeun@asu.edu",
6768
website: "https://hokeun.github.io/",
69+
image: "/img/events/cpsweek-2026-tutorial/hokeun-kim.jpg",
6870
bio: "Assistant professor of Computer Science and Engineering in the School of Computing and Augmented Intelligence (SCAI) at Arizona State University. Ph.D. in EECS from UC Berkeley (2017) with a focus on distributed cyber-physical systems and IoT security. Research interests include cyber-physical systems, distributed systems, real-time systems, computer security, and computer architecture. Recipient of ACM/IEEE Best Paper Award at CPSWeek, IEEE Micro Top Picks Honorable Mention, and 1st Place in ESSC at ESWEEK.",
6971
},
7072
{
7173
name: "Chadlia Jerad",
7274
affiliation: "University of Manouba, Tunisia",
7375
email: "chadlia.jerad@ensi-uma.tn",
7476
website: "https://chadliajerad.github.io/",
77+
image: "/img/events/cpsweek-2026-tutorial/chadlia-jerad.jpg",
7578
bio: "Associate professor at the National School of Computer Science (ENSI), University of Manouba, Tunisia. Fulbright Visiting Scholar at EECS, UC Berkeley in 2016-2017 (Accessors project) and 2022-2023 (Lingua Franca project). Recognized by DAAD Tunisia as 'Portrait of the Month' in 2018. Research interests include embedded and cyber-physical systems, distributed and real-time systems, computer architecture, and formal verification.",
7679
},
7780
{
7881
name: "Edward A. Lee",
7982
affiliation: "University of California, Berkeley, USA",
8083
email: "eal@berkeley.edu",
8184
website: "https://ptolemy.berkeley.edu/~eal/",
85+
image: "/img/events/cpsweek-2026-tutorial/edward-lee.jpg",
8286
bio: "Professor of the Graduate School and Distinguished Professor Emeritus in EECS at UC Berkeley. Author of seven books and hundreds of papers. Director of iCyPhy, the Berkeley Industrial Cyber-Physical Systems Research Center. Fellow of the IEEE, NSF Presidential Young Investigator. Awards include the 2016 IEEE TCRTS Outstanding Technical Achievement and Leadership Award, 2019 IEEE TCCPS Technical Achievement Award, 2022 EDAA Achievement Award, 2022 ACM SIGBED Technical Achievement Award, and Honorary Doctorate from the Technical University of Vienna (2022).",
8387
},
8488
];
@@ -390,26 +394,43 @@ export default function CPSWeek2026Tutorial() {
390394
👥 Organizers
391395
</Heading>
392396
{organizers.map((organizer, idx) => (
393-
<div key={idx} className={clsx("card", "margin-bottom--md")}>
394-
<div className="card__header">
395-
<Heading as="h3" className="margin-bottom--none">
396-
<Link href={organizer.website}>{organizer.name}</Link>
397-
</Heading>
398-
<p
399-
className="margin-bottom--none margin-top--sm"
400-
style={{ opacity: 0.8 }}
401-
>
402-
{organizer.affiliation}
403-
</p>
404-
</div>
397+
<div key={idx} className={clsx("card", "margin-bottom--lg")}>
405398
<div className="card__body">
406-
<p className="margin-bottom--sm">{organizer.bio}</p>
407-
<p className="margin-bottom--none" style={{ fontSize: "0.9rem" }}>
408-
📧{" "}
409-
<Link href={`mailto:${organizer.email}`}>
410-
{organizer.email}
411-
</Link>
412-
</p>
399+
<div className="row">
400+
<div className="col col--3">
401+
<img
402+
src={organizer.image}
403+
alt={organizer.name}
404+
style={{
405+
width: "100%",
406+
maxWidth: "150px",
407+
borderRadius: "8px",
408+
objectFit: "cover",
409+
aspectRatio: "1",
410+
}}
411+
/>
412+
</div>
413+
<div className="col col--9">
414+
<Heading as="h3" className="margin-bottom--none">
415+
<Link href={organizer.website}>{organizer.name}</Link>
416+
</Heading>
417+
<p
418+
className="margin-bottom--sm margin-top--xs"
419+
style={{ opacity: 0.8, fontStyle: "italic" }}
420+
>
421+
{organizer.affiliation}
422+
</p>
423+
<p className="margin-bottom--sm" style={{ fontSize: "0.95rem" }}>
424+
{organizer.bio}
425+
</p>
426+
<p className="margin-bottom--none" style={{ fontSize: "0.9rem" }}>
427+
📧{" "}
428+
<Link href={`mailto:${organizer.email}`}>
429+
{organizer.email}
430+
</Link>
431+
</p>
432+
</div>
433+
</div>
413434
</div>
414435
</div>
415436
))}
@@ -460,53 +481,6 @@ export default function CPSWeek2026Tutorial() {
460481
</div>
461482
</div>
462483

463-
{/* References Section */}
464-
<div className="section sectionAlt">
465-
<div className="container">
466-
<div className="row">
467-
<div className="col col--8 col--offset-2">
468-
<Heading as="h2" className="text--center margin-bottom--lg">
469-
📖 References
470-
</Heading>
471-
<div className="card">
472-
<div className="card__body">
473-
<ol className="margin-bottom--none">
474-
<li className="margin-bottom--sm">
475-
Lingua Franca Organization.{" "}
476-
<Link href="https://lf-lang.org">
477-
Lingua Franca: Build predictable concurrent,
478-
time-sensitive, and distributed systems
479-
</Link>
480-
.
481-
</li>
482-
<li className="margin-bottom--sm">
483-
Lingua Franca Organization.{" "}
484-
<Link href="https://github.com/lf-lang/playground-lingua-franca">
485-
Lingua Franca Playground: Try Lingua Franca now
486-
</Link>
487-
.
488-
</li>
489-
<li>
490-
Marten Lohstroh, Christian Menzel, Soroush Bateni, and
491-
Edward A. Lee.{" "}
492-
<em>
493-
Toward a Lingua Franca for Deterministic Concurrent
494-
Systems
495-
</em>
496-
. ACM Transactions on Embedded Computing Systems (TECS)
497-
20, 4 (May 2021), Article 36.{" "}
498-
<Link href="https://doi.org/10.1145/3448128">
499-
doi:10.1145/3448128
500-
</Link>
501-
</li>
502-
</ol>
503-
</div>
504-
</div>
505-
</div>
506-
</div>
507-
</div>
508-
</div>
509-
510484
{/* CTA Section */}
511485
<div className="section">
512486
<div className="container text--center">
448 KB
Loading
104 KB
Loading
345 KB
Loading

0 commit comments

Comments
 (0)