diff --git a/src/app/experience/page.tsx b/src/app/experience/page.tsx index ad6d073..708e602 100644 --- a/src/app/experience/page.tsx +++ b/src/app/experience/page.tsx @@ -6,6 +6,7 @@ import { Calendar, MapPin, Award, + ExternalLink, } from "lucide-react"; import { Card, @@ -206,8 +207,19 @@ export default function ExperiencePage() { - + {conf.presentation} + {conf.youtubeUrl && ( + + + Watch talk + + )} diff --git a/src/app/page.tsx b/src/app/page.tsx index c7fa7a7..c9af4db 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,6 @@ import { ArrowUpRight, + Award, BookOpen, Code, ExternalLink, @@ -20,7 +21,7 @@ import { CardHeader, CardTitle, } from "~/components/ui/card"; -import { educationList } from "~/lib/data"; +import { awards, educationList } from "~/lib/data"; function SectionLabel({ children }: { children: React.ReactNode }) { return ( @@ -356,6 +357,39 @@ export default function HomePage() { + {/* Recognition */} + + Recognition + + {awards.map((award, i) => ( + + + + + + + {award.title} + + {award.organization && ( + + {award.organization} ยท {award.year} + + )} + + + + {award.description && ( + + + {award.description} + + + )} + + ))} + + + {/* Explore */} Explore diff --git a/src/lib/data.tsx b/src/lib/data.tsx index a655cb5..01060e3 100644 --- a/src/lib/data.tsx +++ b/src/lib/data.tsx @@ -98,7 +98,7 @@ export const educationList = [ degree: "Bachelor of Science in Computer Science and Engineering, Honors", expectedGraduation: "May 2026", graduated: true, - gpa: "3.67", + gpa: "3.71", engineeringGpa: "3.92", deansListSemesters: ["Fall 2022", "Fall 2023", "Spring 2024", "Fall 2024", "Spring 2025", "Fall 2025", "Spring 2026"], }, @@ -374,6 +374,7 @@ export const conferences = [ date: "Aug 2025", presentation: "A Web-Based Wizard-of-Oz Platform for Collaborative and Reproducible Human-Robot Interaction Research", + youtubeUrl: "https://youtu.be/relGUrO8YVo?si=LZKIeiAbu-GE6XCS&t=5333", }, { title: "IEEE RO-MAN 2024",
{conf.presentation}
+ {award.description} +