Skip to content

Commit 0e52e2c

Browse files
committed
.
1 parent 6d1c9c4 commit 0e52e2c

File tree

2 files changed

+75
-0
lines changed

2 files changed

+75
-0
lines changed
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
import type { Metadata } from "next";
2+
export const metadata: Metadata = {
3+
title: "Workshop at CVPR 2025 | OpenDriveLab",
4+
description: "Workshop at CVPR 2025",
5+
keywords: ["Workshop", "CVPR 2025", "OpenDriveLab", "HKU"],
6+
};
7+
8+
9+
import Image from 'next/image'
10+
import Link from "next/link"
11+
12+
13+
14+
import { Separator } from "@/components/ui/separator"
15+
import { AspectRatio } from "@/components/ui/aspect-ratio"
16+
17+
18+
19+
export default function Home() {
20+
return (
21+
<div className="w-full">
22+
23+
24+
25+
<div className="w-full h-svh p-16">
26+
<div className="w-full h-full relative rounded-sm">
27+
<Image
28+
src='/assets/background/denver.jpg'
29+
alt='Denver'
30+
fill
31+
className='object-center object-cover bg-gradient-landing rounded-sm bg-black bg-opacity-30 bg-blend-overlay select-none'
32+
/>
33+
<div className="w-full h-full absolute flex flex-col justify-end items-start p-12 gap-6">
34+
<div className="flex flex-row gap-6 laptop:gap-10">
35+
<Image
36+
src='/assets/icon/cvpr/cvpr2026_white.svg'
37+
alt='cvpr'
38+
width={256}
39+
height={1}
40+
className='select-none'
41+
/>
42+
<Image
43+
src='/assets/icon/cvpr/ieee_cs_white.png'
44+
alt='cvpr'
45+
width={256}
46+
height={1}
47+
className='select-none'
48+
/>
49+
</div>
50+
<h1 className="text-white text-t0 font-bold">
51+
From Labs to Life: Embodied Intelligence in the Wild
52+
</h1>
53+
<h5 className="text-white">
54+
CVPR 2026 Workshop
55+
<br></br>
56+
Denver, USA
57+
</h5>
58+
</div>
59+
</div>
60+
</div>
61+
62+
63+
64+
65+
66+
<div className="w-full px-4 md:px-6 flex flex-col items-center">
67+
<Separator className="max-w-7xl mt-14 md:mt-28" />
68+
</div>
69+
70+
71+
72+
73+
</div>
74+
);
75+
}

0 commit comments

Comments
 (0)