@@ -119,6 +119,42 @@ const organizers: {
119119
120120
121121
122+ export const events : {
123+ title : string ;
124+ subtitle : string ;
125+ url : string ,
126+ image : string ;
127+ imageoption : string ;
128+ location : string ;
129+ } [ ] = [
130+ {
131+ title : "Foundation Models for Autonomous Systems" ,
132+ subtitle : "CVPR 2025" ,
133+ url : "/cvpr2025/workshop" ,
134+ image : "/assets/background/nashville_night.jpg" ,
135+ imageoption : "object-center" ,
136+ location : "Nashville" ,
137+ } ,
138+ {
139+ title : "Embodied Intelligence for Autonomous Systems on the Horizon" ,
140+ subtitle : "CVPR 2024" ,
141+ url : "/cvpr2024/workshop" ,
142+ image : "/assets/background/seattle.jpg" ,
143+ imageoption : "object-center" ,
144+ location : "Seattle" ,
145+ } ,
146+ {
147+ title : "End-to-End Autonomous Driving: Emerging Tasks and Challenges" ,
148+ subtitle : "CVPR 2023" ,
149+ url : "/cvpr2023/workshop" ,
150+ image : "/ui2023/cvpr2023/img/workshop/banner.jpg" ,
151+ imageoption : "object-center" ,
152+ location : "Vancouver" ,
153+ } ,
154+ ] ;
155+
156+
157+
122158export default function Home ( ) {
123159 return (
124160 < div className = "w-full" >
@@ -164,6 +200,40 @@ export default function Home() {
164200
165201
166202
203+ < div className = "w-full px-6 flex justify-center mt-24" >
204+ < div className = "w-full max-w-7xl flex" >
205+ < h2 className = "text-t1" >
206+ < Link href = "#introduction" className = "scroll-mt-32 group flex items-center" id = "introduction" >
207+ Introduction
208+ < span className = "ml-6 hidden group-hover:inline-block size-6 text-foreground" >
209+ < svg viewBox = "0 0 24 24" fill = "none" stroke = "currentColor" >
210+ < 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" />
211+ < 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" />
212+ </ svg >
213+ </ span >
214+ </ Link >
215+ </ h2 >
216+ </ div >
217+ </ div >
218+
219+
220+
221+ < div className = "w-full px-6 flex justify-center mt-12" >
222+ < div className = "w-full max-w-7xl flex flex-col gap-3" >
223+ < p className = "leading-relaxed" >
224+ Autonomous systems, such as robots and self-driving cars, have rapidly evolved over the past decades. Despite this, several problems remain. Attempts have been made to develop more capable autonomous systems, such as integrating foundation models and utilizing large-scale data. However, the challenging problems have yet to be solved.
225+ </ p >
226+ < p className = "leading-relaxed" >
227+ The motivation behind this workshop is to explore potential solutions, and discuss the challenges and opportunities associated with these approaches. We believe that this workshop serves as a brand-new perspective on < b > the present and future of autonomous systems</ b > , and is necessary for both the robotics and computer vision communities.
228+ </ p >
229+ < p className = "leading-relaxed" >
230+ If you are interested in our workshop, please < b > mark the workshop in your CVPR registration</ b > , to have enough space for the workshop room.
231+ </ p >
232+ </ div >
233+ </ div >
234+
235+
236+
167237 < div className = "w-full px-6 flex justify-center mt-24" >
168238 < div className = "w-full max-w-7xl flex" >
169239 < h2 className = "text-t1" >
@@ -290,6 +360,57 @@ export default function Home() {
290360
291361
292362
363+ < div className = "w-full px-6 flex justify-center mt-24" >
364+ < div className = "w-full max-w-7xl flex" >
365+ < h2 className = "text-t1" >
366+ < Link href = "#edition" className = "scroll-mt-32 group flex items-center" id = "edition" >
367+ Past Editions
368+ < span className = "ml-6 hidden group-hover:inline-block size-6 text-foreground" >
369+ < svg viewBox = "0 0 24 24" fill = "none" stroke = "currentColor" >
370+ < 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" />
371+ < 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" />
372+ </ svg >
373+ </ span >
374+ </ Link >
375+ </ h2 >
376+ </ div >
377+ </ div >
378+
379+
380+
381+ < div className = "w-full px-6 flex justify-center mt-12" >
382+ < div className = "w-full max-w-7xl grid gap-12 grid-cols-1 xl:grid-cols-2" >
383+ { [ ...events . values ( ) ] . map ( ( event ) => (
384+ < div className = "flex flex-col gap-6" key = { event . title } >
385+ < Link className = "w-full h-64 md:h-80 relative rounded-sm shadow-sm overflow-hidden group" href = { event . url } target = { event . url . startsWith ( 'http' ) ? '_blank' : '_self' } >
386+ < Image
387+ src = { event . image }
388+ alt = { event . location }
389+ fill
390+ className = { event . imageoption + " object-cover bg-gradient-landing group-hover:scale-103 transition delay-100 duration-200" }
391+ />
392+ < div className = "w-full h-full absolute flex flex-col justify-end items-end p-6" >
393+ < h3 className = "text-white font-bold text-t0 select-none" >
394+ { event . location }
395+ </ h3 >
396+ </ div >
397+ </ Link >
398+ < div className = "flex flex-col gap-3" >
399+ < h2 className = "text-xl font-bold" >
400+ { event . title }
401+ </ h2 >
402+ < h3 >
403+ { event . subtitle }
404+ </ h3 >
405+ </ div >
406+
407+ </ div >
408+ ) ) }
409+ </ div >
410+ </ div >
411+
412+
413+
293414 </ div >
294415 ) ;
295416}
0 commit comments