Skip to content

Commit acb44c5

Browse files
committed
.
1 parent 8ed98fc commit acb44c5

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,27 +213,27 @@ export default function Home() {
213213
</span>
214214
</Link>
215215
</h2>
216-
<Link href='/projects' className="w-16 xl:w-24 group flex ">
216+
<Link href='/datasets' className="w-16 xl:w-24 group flex ">
217217
<AspectRatio ratio={3/1}>
218218
<Image
219219
src="/assets/icon/arrow.png"
220-
alt="Projects"
220+
alt="datasets"
221221
fill
222222
className="group-hover:scale-125 transition delay-100 duration-200"
223223
/>
224224
</AspectRatio>
225225
<AspectRatio ratio={3/1}>
226226
<Image
227227
src="/assets/icon/arrow.png"
228-
alt="Projects"
228+
alt="datasets"
229229
fill
230230
className="group-hover:scale-125 transition delay-100 duration-200"
231231
/>
232232
</AspectRatio>
233233
<AspectRatio ratio={3/1}>
234234
<Image
235235
src="/assets/icon/arrow.png"
236-
alt="Projects"
236+
alt="datasets"
237237
fill
238238
className="group-hover:scale-125 transition delay-100 duration-200"
239239
/>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import type { Metadata } from "next";
22
export const metadata: Metadata = {
3-
title: "Project | OpenDriveLab",
3+
title: "Dataset | OpenDriveLab",
44
description: "OpenDriveLab is committed to exploring cutting-edge embodied AI technology, launching a series of benchmarking work, open source to serve the community, and promote the common development of the industry. Friends who are committed to making influential research are welcome to join!",
5-
keywords: ["Project", "OpenDriveLab", "Robotics", "Embodied AI", "Autonomous Driving", "HKU", "SII"],
5+
keywords: ["Dataset", "OpenDriveLab", "Robotics", "Embodied AI", "Autonomous Driving", "HKU", "SII"],
66
};
77

88

@@ -21,7 +21,7 @@ export default function Home() {
2121
<div className="w-full max-w-7xl flex flex-col gap-6 fg-gradient-blue">
2222
{/* pb-24 for fading color */}
2323
<h1 className="text-t0 font-bold pb-24">
24-
Project
24+
Dataset
2525
</h1>
2626
</div>
2727
</div>

components/app-sidebar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ export function AppSidebar() {
176176

177177

178178

179-
<Link href="/projects" className="p-2 rounded-sm hover:bg-o-blue/3 select-none">
180-
Project
179+
<Link href="/datasets" className="p-2 rounded-sm hover:bg-o-blue/3 select-none">
180+
Dataset
181181
</Link>
182182
{/* <Collapsible className="group/collapsible flex flex-col gap-6">
183183
<SidebarMenuItem>
@@ -190,7 +190,7 @@ export function AppSidebar() {
190190
<Link href="/AgiBot-World" className="p-2 rounded-sm hover:bg-o-blue/3 select-none">
191191
AgiBot World
192192
</Link>
193-
<Link href="/projects" className="p-2 rounded-sm hover:bg-o-blue/3 select-none">
193+
<Link href="/datasets" className="p-2 rounded-sm hover:bg-o-blue/3 select-none">
194194
more
195195
</Link>
196196
</SidebarMenuSub>

components/redirect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default function Redirect() {
3333
pathname.toLowerCase().startsWith('/dataset') ||
3434
pathname.toLowerCase().startsWith('/project')
3535
) {
36-
redirect('/projects')
36+
redirect('/datasets')
3737
}
3838
if (
3939
pathname.toLowerCase() == '/event' ||

data/navigator-page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export const NavigatorPage: {
110110
id: "apply",
111111
},
112112
],
113-
"/projects": [
113+
"/datasets": [
114114
{
115115
text: "Embodied AI",
116116
id: "embodied",

0 commit comments

Comments
 (0)