@@ -35,7 +35,7 @@ ${currentUrl}`
3535 'MMMM D, YYYY'
3636 ) } as part of the Destino Devconnect series.%0A%0A${ encodeURIComponent (
3737 currentUrl
38- ) } &channelKey=devcon &embeds[]=${ encodeURIComponent ( currentUrl ) } `
38+ ) } &channelKey=devconnect &embeds[]=${ encodeURIComponent ( currentUrl ) } `
3939
4040 const hasLink = eventData . link && eventData . link . startsWith ( 'http' )
4141
@@ -61,7 +61,12 @@ ${currentUrl}`
6161 { ( globalThis as any ) . translations . this_is_a_destino_devconnect_event }
6262 </ Link >
6363 </ div >
64- < Tilty className = "max-w-full relative contents md:block" style = { { transformStyle : 'preserve-3d' } } speed = { 5000 } >
64+ < Tilty
65+ className = "max-w-full relative contents md:block"
66+ style = { { transformStyle : 'preserve-3d' } }
67+ speed = { 5000 }
68+ reverse
69+ >
6570 < div className = "flex flex-col bg-white rounded-2xl overflow-hidden w-full max-w-[800px] shadow-lg border border-gray-600 border-solid mt-4 mb-0 sm:mt-0 " >
6671 < div className = "w-full aspect-[7/2] relative" >
6772 < Image
@@ -74,9 +79,6 @@ ${currentUrl}`
7479 < div className = "py-4 px-6 flex flex-col" >
7580 < div className = "flex flex-col md:flex-row md:items-start md:justify-between gap-4 mb-3" >
7681 < h1 className = "text-xl md:text-2xl font-extrabold text-gray-900 leading-tight" > { eventData ?. name } </ h1 >
77- { /* <span className="inline-block bg-gradient-to-r from-purple-500 to-pink-500 text-white text-xs font-semibold px-3 py-1 rounded-full shadow">
78- {eventData.name}
79- </span> */ }
8082 < span className = "inline-flex items-center gap-1 text-gray-500 text-xs font-medium" >
8183 < svg
8284 className = "w-4 h-4 text-gray-400"
@@ -94,7 +96,6 @@ ${currentUrl}`
9496 { eventData ?. location }
9597 </ span >
9698 </ div >
97- { /* <h1 className="text-xl md:text-2xl font-extrabold text-gray-900 leading-tight mb-2">{eventData?.name}</h1> */ }
9899 < p className = "mb-4 text-xs md:text-base" > { eventData ?. content } </ p >
99100 < div className = "flex flex-col sm:flex-row gap-4 text-sm justify-between" >
100101 < div className = "flex gap-4" >
@@ -128,11 +129,7 @@ ${currentUrl}`
128129 </ Button >
129130 </ Link >
130131 ) }
131- { /* <Image
132- src={DestinoLogo}
133- alt="Destino Logo"
134- className="object-cover w-[250px] max-w-[70vw] absolute bottom-0 translate-y-[calc(100%+24px)] left-1/2 -translate-x-1/2"
135- /> */ }
132+
136133 < div >
137134 { ( globalThis as any ) . translations . destino_ai_generated }
138135 { hasLink && ' - ' + ( globalThis as any ) . translations . destino_ai_generated_2 }
@@ -180,8 +177,6 @@ export const getStaticPaths = async ({ locales }: { locales: string[] }) => {
180177
181178 const events = await eventsResponse . json ( )
182179
183- console . log ( events , 'EVENTS' )
184-
185180 const paths = locales . flatMap ( locale =>
186181 events . map ( ( event : any ) => ( {
187182 params : { event : `${ encodeURIComponent ( event . name ) . replace ( / % 2 0 / g, '-' ) } -${ encodeURIComponent ( event . event_id ) } ` } ,
0 commit comments