Skip to content

Commit 017a5ed

Browse files
committed
.
1 parent 21b0b58 commit 017a5ed

4 files changed

Lines changed: 40 additions & 8 deletions

File tree

app/(default)/(home)/landing.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export function Landing() {
157157
landing.link.startsWith('https://mmlab.hk/research/MM-Hand') ? (
158158
"Checkout at mmlab.hk/MM-Hand"
159159
) : (
160-
landing.link.startsWith('/SMASH/') ? (
160+
false ? (
161161
"Page"
162162
) : (
163163
"Paper"
@@ -168,7 +168,7 @@ export function Landing() {
168168
)
169169
}
170170
{
171-
landing.icon.length != 0 && landing.icon[0].type != 'cite' && (
171+
landing.icon.length != 0 && landing.icon[0].type != 'cite' && landing.link != '' && (
172172
<span className="text-xs mr-3"> | </span>
173173
)
174174
}

app/(default)/(research)/AutonomousDriving/page.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,17 @@ export default function Home() {
117117
>
118118
<Link href={publication.link} target={publication.link.startsWith('http') ? '_blank' : '_self'} className="animated-underline-gray mr-3 text-nowrap">
119119
{
120-
publication.link.startsWith('http') ? (
121-
"Paper"
122-
) : (
123-
"Blog"
120+
publication.link != '' && (
121+
publication.link.startsWith('http') ? (
122+
"Paper"
123+
) : (
124+
"Blog"
125+
)
124126
)
125127
}
126128
</Link>
127129
{
128-
publication.icon.length != 0 && publication.icon[0].type != 'cite' && (
130+
publication.icon.length != 0 && publication.icon[0].type != 'cite' && publication.link != '' && (
129131
<span className="text-xs mr-3"> | </span>
130132
)
131133
}

components/redirect.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,11 @@ export default function Redirect() {
147147
) {
148148
redirect('/TAMEn/')
149149
}
150+
if (
151+
pathname.toLowerCase().startsWith('/worldengine')
152+
) {
153+
redirect('/WorldEngine/')
154+
}
150155

151156
// kai
152157
if (

data/publications.tsx

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,31 @@ export const publications: {
6565
time: string;
6666
timeline: string[];
6767
}[] = [
68+
// {
69+
// title: "Towards the Era of Post-Training for Physical AI",
70+
// link: "",
71+
// image: "https://ik.imagekit.io/opendrivelab/publication/README_overall.jpg?updatedAt=1776279802611",
72+
// image_sliding: "https://ik.imagekit.io/opendrivelab/WE_sliding.jpg?updatedAt=1776279788833",
73+
// author: "Tianyu Li, Li Chen, Caojun Wang, Haochen Liu, Kashyap Chitta, Yuhang Lu, Naisheng Ye, Yufei Wang, Jiaxin Peng, Jin Pan, Zhaoyu Su, Andrei Bursuc, Shengbo Eben Li, Andreas Geiger, Honglin Bian, Hongyang Li, Peng Su",
74+
// note: "Preprint 2026",
75+
// noteoption: '',
76+
// star: "https://img.shields.io/github/stars/OpenDriveLab/WorldEngine?style=social",
77+
// starlink: "https://github.com/OpenDriveLab/WorldEngine",
78+
// icon: [
79+
// {
80+
// type: "page",
81+
// link: "/WorldEngine",
82+
// },
83+
// {
84+
// type: "github",
85+
// link: "https://github.com/OpenDriveLab/WorldEngine",
86+
// },
87+
// ],
88+
// description: "World Engine does not scale the dataset. It scales the difficulty.",
89+
// keys: ['end_to_end_ad', 'home_sliding'],
90+
// time: '2026.04.18',
91+
// timeline: ['te2e', 'highlight'],
92+
// },
6893
{
6994
title: "TAMEn: Tactile-Aware Manipulation Engine for Closed-Loop Data Collection in Contact-Rich Tasks",
7095
link: "https://arxiv.org/abs/2604.07335",
@@ -89,7 +114,7 @@ export const publications: {
89114
time: '2026.04.08',
90115
timeline: ['tembodied'],
91116
},
92-
{
117+
{
93118
title: "SMASH: Mastering Scalable Whole-Body Skills for Humanoid Ping-Pong with Egocentric Vision",
94119
link: "https://arxiv.org/abs/2604.01158",
95120
image: "https://ik.imagekit.io/opendrivelab/SMASH.png",

0 commit comments

Comments
 (0)