Skip to content

Commit 1401057

Browse files
committed
.
1 parent cb0750a commit 1401057

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function isWithinLastNMonths(time: string, months = 3) {
2929
return pubDate >= past && pubDate <= now;
3030
}
3131
const recentPublications = publications
32-
.filter(pub => pub.time && isWithinLastNMonths(pub.time, 3))
32+
.filter(pub => pub.time && isWithinLastNMonths(pub.time, 2))
3333
.sort(
3434
(a, b) =>
3535
new Date(b.time.replace(/\./g, '-')).getTime() -
@@ -73,7 +73,7 @@ function getPublicationLinks(pub: {
7373
}
7474
const publicationNews: NewsItem[] = recentPublications.map(pub => ({
7575
date: pub.time,
76-
content: `${pub.title} has been published.`,
76+
content: `${pub.title}.`,
7777
links: getPublicationLinks(pub),
7878
}));
7979

data/publications.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ export const publications: {
6666
timeline: string[];
6767
}[] = [
6868
{
69-
title: "EgoHumanoid",
70-
link: "",
71-
image: "",
72-
author: "",
69+
title: "EgoHumanoid: Unlocking In-the-Wild Loco-Manipulation with Robot-Free Egocentric Demonstration",
70+
link: "https://arxiv.org/abs/2602.10106",
71+
image: "https://ik.imagekit.io/opendrivelab/publication/EgoHumanoid.jpg",
72+
author: "Modi Shi, Shijia Peng, Jin Chen, Haoran Jiang, Yinghui Li, Di Huang, Ping Luo, Hongyang Li, Li Chen",
7373
note: "Preprint 2026",
7474
noteoption: '',
7575
star: "",
@@ -81,9 +81,9 @@ export const publications: {
8181
},
8282
],
8383
description: "",
84-
keys: [],
85-
time: '',
86-
timeline:[],
84+
keys: ['embodied_ai'],
85+
time: '2026.02.10',
86+
timeline:['tembodied', 'highlight'],
8787
},
8888
{
8989
title: "MM-Hand",

0 commit comments

Comments
 (0)