|
| 1 | +import type { Metadata } from "next"; |
| 2 | +export const metadata: Metadata = { |
| 3 | + title: "Workshop at RSS 2026 | OpenDriveLab", |
| 4 | + description: "Workshop at RSS 2026", |
| 5 | + keywords: ["Workshop", "RSS 2026", "OpenDriveLab", "HKU"], |
| 6 | +}; |
| 7 | + |
| 8 | + |
| 9 | +import Image from 'next/image' |
| 10 | +import Link from "next/link" |
| 11 | + |
| 12 | + |
| 13 | + |
| 14 | +import { AspectRatio } from "@/components/ui/aspect-ratio" |
| 15 | + |
| 16 | + |
| 17 | + |
| 18 | +const speakers: { |
| 19 | + name: string; |
| 20 | + image: string; |
| 21 | + position: string; |
| 22 | + affiliation: string; |
| 23 | + link: string; |
| 24 | +}[] = [ |
| 25 | + { |
| 26 | + name: "Javier Alonso-Mora", |
| 27 | + image: "https://ik.imagekit.io/opendrivelab/yuance/people/javier_alonso_mora.jpg", |
| 28 | + position: "Full Professor", |
| 29 | + affiliation: 'TU Delft', |
| 30 | + link: 'https://autonomousrobots.nl/people/' |
| 31 | + }, |
| 32 | + { |
| 33 | + name: "Leslie Pack Kaelbling", |
| 34 | + image: "https://ik.imagekit.io/opendrivelab/yuance/people/leslie_kaelbling.jpg", |
| 35 | + position: "Professor", |
| 36 | + affiliation: 'MIT', |
| 37 | + link: 'https://people.csail.mit.edu/lpk/' |
| 38 | + }, |
| 39 | + { |
| 40 | + name: "Shan Luo", |
| 41 | + image: "https://ik.imagekit.io/opendrivelab/yuance/people/shan_luo.jpg", |
| 42 | + position: "Reader", |
| 43 | + affiliation: "King's College London", |
| 44 | + link: 'https://shanluo.github.io/' |
| 45 | + }, |
| 46 | + { |
| 47 | + name: "Hamidreza Kasaei", |
| 48 | + image: "https://ik.imagekit.io/opendrivelab/yuance/people/hamidreza_kasaei.jpg", |
| 49 | + position: "Associate Professor", |
| 50 | + affiliation: 'University of Groningen', |
| 51 | + link: 'https://hkasaei.github.io/' |
| 52 | + }, |
| 53 | + { |
| 54 | + name: "Roberto Martín-Martín", |
| 55 | + image: "https://ik.imagekit.io/opendrivelab/yuance/people/roberto_marti%CC%81n_marti%CC%81n.jpg", |
| 56 | + position: "Assistant Professor", |
| 57 | + affiliation: 'UT Austin', |
| 58 | + link: 'https://robertomartinmartin.com/' |
| 59 | + }, |
| 60 | + { |
| 61 | + name: "Fan Shi", |
| 62 | + image: "https://ik.imagekit.io/opendrivelab/yuance/people/fan_shi.jpg", |
| 63 | + position: "Assistant Professor", |
| 64 | + affiliation: 'NUS', |
| 65 | + link: 'https://fanshi14.github.io/me/' |
| 66 | + }, |
| 67 | + { |
| 68 | + name: "Tianyu Li", |
| 69 | + image: "/assets/person/tianyu_li.jpg", |
| 70 | + position: "CEO", |
| 71 | + affiliation: 'Archon', |
| 72 | + link: 'https://scholar.google.com/citations?user=X6vTmEMAAAAJ' |
| 73 | + }, |
| 74 | +]; |
| 75 | + |
| 76 | + |
| 77 | + |
| 78 | +const organizers: { |
| 79 | + name: string; |
| 80 | + affiliation: string; |
| 81 | + link: string; |
| 82 | +}[] = [ |
| 83 | + { |
| 84 | + name: "Hongyang Li", |
| 85 | + affiliation: 'The University of Hong Kong', |
| 86 | + link: 'https://datascience.hku.hk/people/hongyang-li/' |
| 87 | + }, |
| 88 | + // { |
| 89 | + // name: "Ping Luo", |
| 90 | + // affiliation: 'The University of Hong Kong', |
| 91 | + // link: 'http://luoping.me/' |
| 92 | + // }, |
| 93 | + { |
| 94 | + name: "Yasemin Bekiroğlu", |
| 95 | + affiliation: 'University College London', |
| 96 | + link: 'https://www.dryaseminbekiroglu.com/' |
| 97 | + }, |
| 98 | + { |
| 99 | + name: "Lucy Xiaoyang Shi", |
| 100 | + affiliation: 'Stanford & Physical Intelligence', |
| 101 | + link: 'https://lucys0.github.io/' |
| 102 | + }, |
| 103 | + { |
| 104 | + name: "Huijie Wang", |
| 105 | + affiliation: 'OpenDriveLab', |
| 106 | + link: 'https://faikit.github.io/' |
| 107 | + }, |
| 108 | +]; |
| 109 | + |
| 110 | + |
| 111 | + |
| 112 | +const events: { |
| 113 | + title: string; |
| 114 | + subtitle: string; |
| 115 | + url: string, |
| 116 | + image: string; |
| 117 | + imageoption: string; |
| 118 | + location: string; |
| 119 | +}[] = [ |
| 120 | + { |
| 121 | + title: "From Labs to Life: Embodied Intelligence in the Wild", |
| 122 | + subtitle: "CVPR 2026", |
| 123 | + url: "/cvpr2026/workshop", |
| 124 | + image: "https://ik.imagekit.io/opendrivelab/nils-huenerfuerst-OVE2SA0TVJE-unsplash.jpg?updatedAt=1761792013763", |
| 125 | + imageoption: "object-center", |
| 126 | + location: "Denver", |
| 127 | + }, |
| 128 | + { |
| 129 | + title: "Learning to See: Advancing Spatial Understanding for Embodied Intelligence", |
| 130 | + subtitle: "ICCV 2025", |
| 131 | + url: "/iccv2025/workshop", |
| 132 | + image: "/assets/background/honolulu.jpg", |
| 133 | + imageoption: "object-center", |
| 134 | + location: "Honolulu", |
| 135 | + }, |
| 136 | +]; |
| 137 | + |
| 138 | + |
| 139 | + |
| 140 | +export default function Home() { |
| 141 | + return ( |
| 142 | + <div className="w-full"> |
| 143 | + |
| 144 | + |
| 145 | + |
| 146 | + <div className="w-full h-svh py-16 px-6 3xl:px-16"> |
| 147 | + <div className="w-full h-full relative rounded-sm"> |
| 148 | + <Image |
| 149 | + src='https://ik.imagekit.io/opendrivelab/jamie-davies-Hao52Fu9-F8-unsplash.jpg' |
| 150 | + alt='Sydney' |
| 151 | + fill |
| 152 | + className='object-center object-cover bg-gradient-landing rounded-sm bg-black bg-opacity-30 bg-blend-overlay select-none' |
| 153 | + /> |
| 154 | + <div className="w-full h-full absolute flex flex-col justify-end items-start p-6 xl:p-10 gap-6"> |
| 155 | + <div className="flex flex-row gap-6"> |
| 156 | + {/* <Image |
| 157 | + src='https://ik.imagekit.io/opendrivelab/rss2026.png' |
| 158 | + alt='cvpr' |
| 159 | + width={192} |
| 160 | + height={1} |
| 161 | + className='select-none' |
| 162 | + /> */} |
| 163 | + </div> |
| 164 | + <h1 className="text-white text-t1 font-bold"> |
| 165 | + Building and Learning in Interactive World Simulators |
| 166 | + </h1> |
| 167 | + <h5 className="text-white"> |
| 168 | + NeurIPS 2026 Workshop |
| 169 | + <br></br> |
| 170 | + Sydney, Australia |
| 171 | + </h5> |
| 172 | + </div> |
| 173 | + </div> |
| 174 | + </div> |
| 175 | + |
| 176 | + |
| 177 | + |
| 178 | + <div className="w-full px-6 flex justify-center mt-24"> |
| 179 | + <div className="w-full max-w-7xl flex"> |
| 180 | + <h2 className="text-t1"> |
| 181 | + <Link href="#introduction" className="scroll-mt-32 group flex items-center" id="introduction"> |
| 182 | + Introduction |
| 183 | + <span className="ml-6 hidden group-hover:inline-block size-6 text-foreground"> |
| 184 | + <svg viewBox="0 0 24 24" fill="none" stroke="currentColor"> |
| 185 | + <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"/> |
| 186 | + <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"/> |
| 187 | + </svg> |
| 188 | + </span> |
| 189 | + </Link> |
| 190 | + </h2> |
| 191 | + </div> |
| 192 | + </div> |
| 193 | + |
| 194 | + |
| 195 | + |
| 196 | + <div className="w-full px-6 flex justify-center mt-12"> |
| 197 | + <div className="w-full max-w-7xl flex flex-col gap-3"> |
| 198 | + <p className="leading-relaxed"> |
| 199 | + A world simulator is only as good as what can be learned in it. |
| 200 | + </p> |
| 201 | + </div> |
| 202 | + </div> |
| 203 | + |
| 204 | + |
| 205 | + |
| 206 | + |
| 207 | + <div className="w-full px-6 flex justify-center mt-24"> |
| 208 | + <div className="w-full max-w-7xl flex"> |
| 209 | + <h2 className="text-t1"> |
| 210 | + <Link href="#speaker" className="scroll-mt-32 group flex items-center" id="speaker"> |
| 211 | + Speakers |
| 212 | + <span className="ml-6 hidden group-hover:inline-block size-6 text-foreground"> |
| 213 | + <svg viewBox="0 0 24 24" fill="none" stroke="currentColor"> |
| 214 | + <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"/> |
| 215 | + <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"/> |
| 216 | + </svg> |
| 217 | + </span> |
| 218 | + </Link> |
| 219 | + </h2> |
| 220 | + </div> |
| 221 | + </div> |
| 222 | + <div className="w-full px-6 flex justify-center mt-12"> |
| 223 | + <div className="w-full max-w-7xl flex"> |
| 224 | + To be announced. |
| 225 | + </div> |
| 226 | + </div> |
| 227 | + |
| 228 | + |
| 229 | + |
| 230 | + </div> |
| 231 | + ); |
| 232 | +} |
0 commit comments