Skip to content

Commit

Permalink
Added speaker links
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-palmer committed May 1, 2024
1 parent 370f489 commit 4f8a482
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 3 deletions.
24 changes: 22 additions & 2 deletions src/components/Speakers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,15 @@ import {
Flex,
Th,
Text,
Link,
useColorModeValue,
} from "@chakra-ui/react";
import React from "react";

function Speaker({ date, name, affiliation, title, location, time }) {
function Speaker({ date, name, affiliation, title, location, time, url }) {
const textColor = useColorModeValue("osu.orange");
const darkTextColor = useColorModeValue("osu.darkOrange");

return (
<Tr>
<Td
Expand All @@ -30,7 +35,21 @@ function Speaker({ date, name, affiliation, title, location, time }) {
}}
style={{ minWidth: "150px" }}
>
{name}
{url ? (
<Link
color={textColor}
href={url}
_hover={{
color: darkTextColor,
}}
textDecoration="underline"
isExternal
>
{name}
</Link>
) : (
name
)}
</Td>
<Td
fontSize={{
Expand Down Expand Up @@ -108,6 +127,7 @@ export default function Speakers({ title, list }) {
title={speaker.title}
location={speaker.location}
time={speaker.time}
url={speaker.url}
/>
))}
</Tbody>
Expand Down
4 changes: 4 additions & 0 deletions src/speakers/Fall2023.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const Fall2023Speakers = [
"Solving Robotics Tasks in Sensing, Model, and Privacy Challenged Environments",
location: "Rogers Hall 230",
time: "10:00am",
url: "https://www.cis.fiu.edu/faculty-staff/bobadilla-leonardo/",
},
{
date: "Oct 27",
Expand All @@ -16,6 +17,7 @@ export const Fall2023Speakers = [
"Proposals, publications, and field work (oh my!): A year in the life of an early career, soft money research faculty",
location: "Rogers Hall 230",
time: "10:00am",
url: "https://www.radlab.us/home",
},
{
date: "Nov 3",
Expand All @@ -24,6 +26,7 @@ export const Fall2023Speakers = [
title: "Surviving the Flood (of Rosbags)",
location: "Rogers Hall 230",
time: "10:00am",
url: "https://www.roboto.ai/",
},
{
date: "Nov 17",
Expand All @@ -33,5 +36,6 @@ export const Fall2023Speakers = [
"Evaluating Robotic Grasping and Manipulation Performance and Generalizability",
location: "Rogers Hall 230",
time: "10:00am",
url: "https://www.uml-hri-lab.com/home",
},
];
6 changes: 6 additions & 0 deletions src/speakers/Spring2024.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const Spring2024Speakers = [
title: "Physical and Social Assistance for Aging Society",
location: "Rogers Hall 230",
time: "10:00am",
url: "https://www.tri.global/about-us/dr-katherine-tsui",
},
{
date: "Apr 12",
Expand All @@ -14,6 +15,7 @@ export const Spring2024Speakers = [
title: "We (finally) have dexterous robotic manipulation. Now what?",
location: "Rogers Hall 230",
time: "10:00am",
url: "https://roam.me.columbia.edu/people/matei-ciocarlie",
},
{
date: "May 3",
Expand All @@ -23,6 +25,7 @@ export const Spring2024Speakers = [
"Ranged Kinematics and Time of Flight Sensors for Shared Autonomy Robotic Systems",
location: "Rogers Hall 230",
time: "10:00am",
url: "https://gleicher.sites.cs.wisc.edu/",
},
{
date: "May 10",
Expand All @@ -31,6 +34,7 @@ export const Spring2024Speakers = [
title: "TBD",
location: "Rogers Hall 230",
time: "10:00am",
url: "https://www.linkedin.com/in/nkirchner",
},
{
date: "May 24",
Expand All @@ -39,6 +43,7 @@ export const Spring2024Speakers = [
title: "TBD",
location: "Rogers Hall 230",
time: "10:00am",
url: "http://dasivdesign.com/",
},
{
date: "May 31",
Expand All @@ -47,5 +52,6 @@ export const Spring2024Speakers = [
title: "TBD",
location: "Rogers Hall 230",
time: "10:00am",
url: "https://sites.uml.edu/paul-robinette/",
},
];
4 changes: 4 additions & 0 deletions src/speakers/Winter2024.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const Winter2024Speakers = [
"AI For Deception, Manipulation & Coercion: Towards a Theory and Regulation",
location: "Rogers Hall 230",
time: "10:00am",
url: "https://www.peterasaro.org/",
},
{
date: "Jan 19",
Expand All @@ -16,6 +17,7 @@ export const Winter2024Speakers = [
"Getting the Most Out of Technical Conferences: Tips for Students and Professionals",
location: "Rogers Hall 230",
time: "10:00am",
url: "https://engineering.oregonstate.edu/people/bill-smart",
},
{
date: "Jan 26",
Expand All @@ -25,6 +27,7 @@ export const Winter2024Speakers = [
"Autonomy in the Human World: Developing Robots that Handle the Diversity of Human Lives",
location: "Rogers Hall 230",
time: "10:00am",
url: "https://faculty.cc.gatech.edu/~chernova/",
},
{
date: "Feb 9",
Expand All @@ -34,5 +37,6 @@ export const Winter2024Speakers = [
"Safety, Adaptation and Efficient Learning in Physical Human-Robot Interaction: A Dynamical Systems Approach",
location: "Rogers Hall 230",
time: "10:00am",
url: "https://nbfigueroa.github.io/",
},
];
2 changes: 1 addition & 1 deletion src/views/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function Home() {
.
</ResponsiveText>
<ResponsiveText>
The seminar held <i>in-person</i> and is open to Oregon State
The seminar held <i>in person</i> and is open to Oregon State
University faculty, students, and staff.
</ResponsiveText>
<Speakers title="Spring 2024 Schedule" list={Spring2024Speakers} />
Expand Down

0 comments on commit 4f8a482

Please sign in to comment.