|
| 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 | + <div className="w-full px-6 flex justify-center mt-24"> |
| 65 | + <div className="w-full max-w-7xl flex"> |
| 66 | + <h2 className="text-t1"> |
| 67 | + <Link href="#scholar" className="scroll-mt-32 group flex items-center" id="scholar"> |
| 68 | + Scholar |
| 69 | + <span className="ml-6 hidden group-hover:inline-block size-6 text-foreground"> |
| 70 | + <svg viewBox="0 0 24 24" fill="none" stroke="currentColor"> |
| 71 | + <path d="M15.197 3.35462C16.8703 1.67483 19.4476 1.53865 20.9536 3.05046C22.4596 4.56228 22.3239 7.14956 20.6506 8.82935L18.2268 11.2626M10.0464 14C8.54044 12.4882 8.67609 9.90087 10.3494 8.22108L12.5 6.06212" strokeWidth="2.5" strokeLinecap="round"/> |
| 72 | + <path d="M13.9536 10C15.4596 11.5118 15.3239 14.0991 13.6506 15.7789L11.2268 18.2121L8.80299 20.6454C7.12969 22.3252 4.55237 22.4613 3.0464 20.9495C1.54043 19.4377 1.67609 16.8504 3.34939 15.1706L5.77323 12.7373" strokeWidth="2.5" strokeLinecap="round"/> |
| 73 | + </svg> |
| 74 | + </span> |
| 75 | + </Link> |
| 76 | + </h2> |
| 77 | + </div> |
| 78 | + </div> |
| 79 | + |
| 80 | + |
| 81 | + |
| 82 | + <div className="w-full px-4 md:px-6 flex flex-col items-center"> |
| 83 | + <Separator className="max-w-7xl mt-14 md:mt-28" /> |
| 84 | + </div> |
| 85 | + |
| 86 | + |
| 87 | + |
| 88 | + |
| 89 | + </div> |
| 90 | + ); |
| 91 | +} |
0 commit comments