diff --git a/src/components/Speakers.jsx b/src/components/Speakers.jsx index f17327e..b9d19ff 100644 --- a/src/components/Speakers.jsx +++ b/src/components/Speakers.jsx @@ -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 ( - {name} + {url ? ( + + {name} + + ) : ( + name + )} ))} diff --git a/src/speakers/Fall2023.jsx b/src/speakers/Fall2023.jsx index 5b7cc9f..76107d2 100644 --- a/src/speakers/Fall2023.jsx +++ b/src/speakers/Fall2023.jsx @@ -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", @@ -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", @@ -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", @@ -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", }, ]; diff --git a/src/speakers/Spring2024.jsx b/src/speakers/Spring2024.jsx index b743d77..acc4d87 100644 --- a/src/speakers/Spring2024.jsx +++ b/src/speakers/Spring2024.jsx @@ -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", @@ -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", @@ -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", @@ -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", @@ -39,6 +43,7 @@ export const Spring2024Speakers = [ title: "TBD", location: "Rogers Hall 230", time: "10:00am", + url: "http://dasivdesign.com/", }, { date: "May 31", @@ -47,5 +52,6 @@ export const Spring2024Speakers = [ title: "TBD", location: "Rogers Hall 230", time: "10:00am", + url: "https://sites.uml.edu/paul-robinette/", }, ]; diff --git a/src/speakers/Winter2024.jsx b/src/speakers/Winter2024.jsx index eae7348..1c19d0e 100644 --- a/src/speakers/Winter2024.jsx +++ b/src/speakers/Winter2024.jsx @@ -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", @@ -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", @@ -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", @@ -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/", }, ]; diff --git a/src/views/Home.jsx b/src/views/Home.jsx index 737960a..ec1d15c 100644 --- a/src/views/Home.jsx +++ b/src/views/Home.jsx @@ -73,7 +73,7 @@ function Home() { . - The seminar held in-person and is open to Oregon State + The seminar held in person and is open to Oregon State University faculty, students, and staff.