Skip to content

Commit 1fda8c9

Browse files
committed
.
1 parent 47f00cc commit 1fda8c9

File tree

3 files changed

+33
-16
lines changed

3 files changed

+33
-16
lines changed

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

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import { Chen2025_value_learning } from "@/components/citation-drawer"
3737
import { publications } from "@/data/publications"
3838
import { Button } from "@/components/ui/button"
3939
import { type_mapping } from "@/data/mapping"
40-
const landings = [0,1,2,3,5,4].map(index => [...publications.values()].filter(publication => publication.keys.includes('home_sliding'))[index])
40+
const landings = [0,1,2,3,4,6,5].map(index => [...publications.values()].filter(publication => publication.keys.includes('home_sliding'))[index])
4141

4242

4343

@@ -130,11 +130,7 @@ export function Landing() {
130130
landing.title.startsWith('AgiBot') ? (
131131
"AgiBot World"
132132
) : (
133-
landing.title.startsWith('FreeTacMan') ? (
134-
"FreeTacMan: Robot-free Visuo-Tactile Data Collection System"
135-
) : (
136-
landing.title
137-
)
133+
landing.title
138134
)
139135
}
140136
</h1>
@@ -154,15 +150,19 @@ export function Landing() {
154150

155151
<div>
156152
<div className="flex flex-row items-center flex-wrap text-sm lg:text-base">
157-
<Link href={landing.link} target={landing.link.startsWith('http') ? '_blank' : '_self'} className="animated-underline-gray mr-3 text-nowrap">
158-
{
159-
landing.link.startsWith('http') ? (
160-
"Paper"
161-
) : (
162-
"Blog"
163-
)
164-
}
165-
</Link>
153+
{
154+
landing.link != '' && (
155+
<Link href={landing.link} target={landing.link.startsWith('http') ? '_blank' : '_self'} className="animated-underline-gray mr-3 text-nowrap">
156+
{
157+
landing.link.startsWith('https://mmlab.hk/research/MM-Hand') ? (
158+
"Page"
159+
) : (
160+
"Paper"
161+
)
162+
}
163+
</Link>
164+
)
165+
}
166166
{
167167
landing.icon.length != 0 && landing.icon[0].type != 'cite' && (
168168
<span className="text-xs mr-3"> | </span>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export function News() {
9696
<Link className="text-o-blue animated-underline" href='https://mmlab.hk/research/MM-Hand' target="_blank">
9797
MM-Hand 1.0
9898
</Link>
99-
&nbsp;is currently open for preorder.··
99+
&nbsp;is currently open for preorder.
100100
</span>
101101
</div>
102102
</div>

data/publications.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,23 @@ export const publications: {
6565
time: string;
6666
timeline: string[];
6767
}[] = [
68+
{
69+
title: "MM-Hand 1.0",
70+
link: "https://mmlab.hk/research/MM-Hand",
71+
image: "",
72+
image_sliding: 'https://ik.imagekit.io/opendrivelab/mmhand1.0.jpg',
73+
author: "",
74+
note: "arXiv",
75+
noteoption: '',
76+
star: "",
77+
starlink: "",
78+
icon: [
79+
],
80+
description: "is currently open for preorder.",
81+
keys: ['home_sliding'],
82+
time: '',
83+
timeline:[],
84+
},
6885
{
6986
title: "EgoHumanoid: Unlocking In-the-Wild Loco-Manipulation with Robot-Free Egocentric Demonstration",
7087
link: "https://arxiv.org/abs/2602.10106",

0 commit comments

Comments
 (0)