Skip to content

Commit c169def

Browse files
committed
.
1 parent bdc5b0d commit c169def

File tree

2 files changed

+140
-18
lines changed

2 files changed

+140
-18
lines changed

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

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default function Home() {
2828
Embodied AI
2929
</h1>
3030
<span className="text-xl">
31-
is the integration of artificial intelligence with the physical world, enabling robots to interact with and learn from the real world. We focus on the most critical areas of embodied AI, including humanoid, robot manipulation, and dexterous hand. Our goal is to explore the scaling law for robots, develop general world models, and unveil the power of reinforcement learning to achieve general-purpose embodied agents. For full publication, please see <Link href="/publications" className="underline text-o-blue hover:text-o-light-blue">here</Link>.
31+
is the integration of artificial intelligence with the physical world, enabling robots to interact with and learn from the real world. We focus on the most critical areas of embodied AI, including humanoid, robot manipulation, and dexterous hand. Our goal is to explore the scaling law for robots, develop general world models, and unveil the power of reinforcement learning to achieve general-purpose embodied agents. For a complete list of publications, please see <Link href="/publications" className="underline text-o-blue hover:text-o-light-blue">here</Link>.
3232
</span>
3333
</div>
3434
</div>
@@ -38,7 +38,7 @@ export default function Home() {
3838
<div className="w-full px-6 flex justify-center mt-24">
3939
<div className="w-full max-w-7xl flex">
4040
<ul className="timeline timeline-snap-icon max-md:timeline-compact timeline-vertical">
41-
{[...publications.values()].filter(publication => publication.keys.includes("embodied_ai")).map((publication, index) => (
41+
{[...publications.values()].filter(publication => publication.timeline.includes("tembodied")).map((publication, index) => (
4242
<li key={publication.title}>
4343
{
4444
index != 0 && (
@@ -69,7 +69,7 @@ export default function Home() {
6969

7070

7171
<time className="text-o-gray">
72-
1984
72+
{publication.time}
7373
</time>
7474

7575

@@ -86,17 +86,21 @@ export default function Home() {
8686

8787

8888

89-
<div className="px-20 w-full flex justify-center items-center relative mt-3">
90-
<Link href={publication.link} target={publication.link.startsWith('http') ? '_blank' : '_self'}>
91-
<Image
92-
src={publication.image}
93-
alt={publication.title}
94-
width={1024}
95-
height={1024}
96-
className="rounded-sm bg-gradient-landing hover:scale-103 transition delay-100 duration-200"
97-
/>
98-
</Link>
99-
</div>
89+
{
90+
publication.timeline.includes("highlight") && (
91+
<div className="px-20 w-full flex justify-center items-center relative mt-3">
92+
<Link href={publication.link} target={publication.link.startsWith('http') ? '_blank' : '_self'}>
93+
<Image
94+
src={publication.image}
95+
alt={publication.title}
96+
width={1024}
97+
height={1024}
98+
className="rounded-sm bg-gradient-landing hover:scale-103 transition delay-100 duration-200"
99+
/>
100+
</Link>
101+
</div>
102+
)
103+
}
100104

101105

102106

@@ -105,7 +109,7 @@ export default function Home() {
105109

106110

107111
{
108-
index != [...publications.values()].filter(publication => publication.keys.includes("embodied_ai")).length - 1 && (
112+
index != [...publications.values()].filter(publication => publication.timeline.includes("tembodied")).length - 1 && (
109113
<hr />
110114
)
111115
}

0 commit comments

Comments
 (0)