Skip to content

Commit 23b25ae

Browse files
committed
.
1 parent 5ec6f89 commit 23b25ae

3 files changed

Lines changed: 6 additions & 9 deletions

File tree

app/(default)/test/landing.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export function Landing() {
5656
>
5757
<CarouselContent className="w-full">
5858
{landings.map((landing, index) => (
59-
<CarouselItem key={index} className="w-full h-full flex flex-col lg:flex-row gap-12 lg:gap-24 justify-center items-center lg:p-12">
59+
<CarouselItem key={index} className="w-full h-full flex flex-col lg:flex-row gap-6 lg:gap-24 justify-center items-center lg:p-12">
6060

6161

6262
<div className="flex-1/2 w-full lg:h-full flex flex-col justify-center select-none">
@@ -76,7 +76,7 @@ export function Landing() {
7676

7777

7878

79-
<div className="flex flex-row text-o-gray">
79+
<div className="flex flex-row text-o-gray text-sm lg:text-base">
8080
{index + 1} / {landings.length}
8181
</div>
8282

@@ -107,7 +107,7 @@ export function Landing() {
107107

108108

109109

110-
<h2>
110+
<h2 className="text-sm lg:text-base">
111111
{
112112
landing.title.startsWith('AgiBot') ? (
113113
"World's First Large-scale High-quality Robotic Manipulation Benchmark."
@@ -120,7 +120,7 @@ export function Landing() {
120120

121121

122122
<div>
123-
<div className="flex flex-row items-center flex-wrap">
123+
<div className="flex flex-row items-center flex-wrap text-sm lg:text-base">
124124
<Link href={landing.link} target={landing.link.startsWith('http') ? '_blank' : '_self'} className="animated-underline-gray mr-3 text-nowrap">
125125
Paper
126126
</Link>

components/app-drawer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export function Embodied() {
9191
<div className='w-full max-w-5xl flex flex-col gap-6'>
9292
{[...publications.values()].filter(publication => publication.keys.includes('drawer_embodied')).map((publication) => (
9393
<div className="hidden md:flex flex-col gap-3" key={publication.title}>
94-
<a className="border-l-3 border-o-gray pl-6 hover:border-o-blue flex flex-col gap-1 group" href={publication.starlink} target="_blank">
94+
<a className="border-l-3 border-o-gray pl-6 hover:border-o-blue flex flex-col gap-1 group" href={publication.starlink} target={publication.starlink.startsWith('http') ? '_blank' : '_self'}>
9595
<span className="group-hover:text-o-blue">
9696
{publication.title}
9797
</span>
@@ -134,7 +134,7 @@ export function E2EAD() {
134134
<div className='w-full max-w-5xl flex flex-col gap-6'>
135135
{[...publications.values()].filter(publication => publication.keys.includes('drawer_e2e')).map((publication) => (
136136
<div className="hidden md:flex flex-col gap-3" key={publication.title}>
137-
<a className="border-l-3 border-o-gray pl-6 hover:border-o-blue flex flex-col gap-1 group" href={publication.starlink} target="_blank">
137+
<a className="border-l-3 border-o-gray pl-6 hover:border-o-blue flex flex-col gap-1 group" href={publication.starlink} target={publication.starlink.startsWith('http') ? '_blank' : '_self'}>
138138
<span className="group-hover:text-o-blue">
139139
{publication.title}
140140
</span>

components/app-sidebar.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,6 @@ export function AppSidebar() {
187187
<Link href="/AgiBot-World" className="p-2 rounded-sm hover:bg-o-blue/3 select-none">
188188
AgiBot World
189189
</Link>
190-
<Link href="/DriveLM" className="p-2 rounded-sm hover:bg-o-blue/3 select-none">
191-
DriveLM
192-
</Link>
193190
<Link href="/projects" className="p-2 rounded-sm hover:bg-o-blue/3 select-none">
194191
more
195192
</Link>

0 commit comments

Comments
 (0)