Skip to content

Commit 3dadd6b

Browse files
committed
.
1 parent 22ab1a0 commit 3dadd6b

5 files changed

Lines changed: 389 additions & 17 deletions

File tree

app/(default)/(event)/rss2026/workshop/page.tsx

Lines changed: 26 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,24 @@ import { AspectRatio } from "@/components/ui/aspect-ratio"
1515

1616

1717

18+
import { ScheduleList } from "./schedule"
19+
20+
21+
1822
const speakers: {
1923
name: string;
2024
image: string;
2125
position: string;
2226
affiliation: string;
2327
link: string;
2428
}[] = [
25-
{
26-
name: "Javier Alonso-Mora",
27-
image: "https://ik.imagekit.io/opendrivelab/yuance/people/javier_alonso_mora.jpg",
28-
position: "Full Professor",
29-
affiliation: 'TU Delft',
30-
link: 'https://autonomousrobots.nl/people/'
31-
},
29+
// {
30+
// name: "Javier Alonso-Mora",
31+
// image: "https://ik.imagekit.io/opendrivelab/yuance/people/javier_alonso_mora.jpg",
32+
// position: "Full Professor",
33+
// affiliation: 'TU Delft',
34+
// link: 'https://autonomousrobots.nl/people/'
35+
// },
3236
{
3337
name: "Leslie Pack Kaelbling",
3438
image: "https://ik.imagekit.io/opendrivelab/yuance/people/leslie_kaelbling.jpg",
@@ -50,13 +54,13 @@ const speakers: {
5054
affiliation: 'University of Groningen',
5155
link: 'https://hkasaei.github.io/'
5256
},
53-
{
54-
name: "Roberto Martín-Martín",
55-
image: "https://ik.imagekit.io/opendrivelab/yuance/people/roberto_marti%CC%81n_marti%CC%81n.jpg",
56-
position: "Assistant Professor",
57-
affiliation: 'UT Austin',
58-
link: 'https://robertomartinmartin.com/'
59-
},
57+
// {
58+
// name: "Roberto Martín-Martín",
59+
// image: "https://ik.imagekit.io/opendrivelab/yuance/people/roberto_marti%CC%81n_marti%CC%81n.jpg",
60+
// position: "Assistant Professor",
61+
// affiliation: 'UT Austin',
62+
// link: 'https://robertomartinmartin.com/'
63+
// },
6064
{
6165
name: "Fan Shi",
6266
image: "https://ik.imagekit.io/opendrivelab/yuance/people/fan_shi.jpg",
@@ -68,7 +72,7 @@ const speakers: {
6872
name: "Tianyu Li",
6973
image: "/assets/person/tianyu_li.jpg",
7074
position: "CEO",
71-
affiliation: 'Archon',
75+
affiliation: 'Archon Robotics',
7276
link: 'https://scholar.google.com/citations?user=X6vTmEMAAAAJ'
7377
},
7478
];
@@ -105,6 +109,11 @@ const organizers: {
105109
affiliation: 'OpenDriveLab',
106110
link: 'https://faikit.github.io/'
107111
},
112+
{
113+
name: "Chonghao Sima",
114+
affiliation: 'The University of Hong Kong',
115+
link: 'https://scholar.google.com/citations?user=dgYJ6esAAAAJ'
116+
},
108117
];
109118

110119

@@ -367,8 +376,8 @@ export default function Home() {
367376
</div>
368377
</div>
369378
<div className="w-full px-6 flex justify-center mt-12">
370-
<div className="w-full max-w-7xl flex">
371-
To be announced.
379+
<div className="w-full max-w-7xl">
380+
<ScheduleList/>
372381
</div>
373382
</div>
374383

0 commit comments

Comments
 (0)