@@ -96,7 +96,7 @@ const Page = async (props: { params: Promise<PageParams> }) => {
9696 </ div >
9797
9898 < div className = "w-full px-4 py-8 md:px-8" >
99- < div className = "flex flex-col items-center gap-4 rounded-4xl bg-radial-a px-4 pt-8 lg:px-14 lg:pt-14" >
99+ < div className = "bg-radial-a flex flex-col items-center gap-4 rounded-4xl px-4 pt-8 lg:px-14 lg:pt-14" >
100100 < div className = "flex flex-col gap-4 text-center" >
101101 < h2 className = "text-4xl font-black" >
102102 { t ( "page-10-year-livestream-title" ) }
@@ -117,12 +117,12 @@ const Page = async (props: { params: Promise<PageParams> }) => {
117117 defaultValue = { Object . keys ( tenYearEventRegions ) [ 0 ] }
118118 className = "w-full"
119119 >
120- < TabsList className = "w-full flex-nowrap justify-start overflow-x-auto overflow-y-hidden rounded-none border-b-2 border-b-primary p-0" >
120+ < TabsList className = "border-b-primary w-full flex-nowrap justify-start overflow-x-auto overflow-y-hidden rounded-none border-b-2 p-0" >
121121 { Object . entries ( tenYearEventRegions ) . map ( ( [ key , data ] ) => (
122122 < TabsTrigger
123123 key = { key }
124124 value = { key }
125- className = "whitespace-nowrap border-0 text-primary "
125+ className = "text-primary border-0 whitespace-nowrap "
126126 >
127127 { data . label }
128128 < span className = "text-sm" > ({ data . events . length } )</ span >
@@ -157,8 +157,8 @@ const Page = async (props: { params: Promise<PageParams> }) => {
157157 key = { country }
158158 className = { cn ( "flex flex-col border-b px-4 py-6" ) }
159159 >
160- < h3 className = "mb-2 flex items-center gap-2 text-2xl font-bold text-body-medium " >
161- < span className = "flex min-h-6 min-w-6 items-center justify-center overflow-hidden rounded-full bg-primary-low-contrast " >
160+ < h3 className = "text-body-medium mb-2 flex items-center gap-2 text-2xl font-bold" >
161+ < span className = "bg-primary-low-contrast flex min-h-6 min-w-6 items-center justify-center overflow-hidden rounded-full" >
162162 < Emoji
163163 text = { countryEvents [ 0 ] . countryFlag }
164164 className = "scale-[1.75]"
@@ -170,7 +170,7 @@ const Page = async (props: { params: Promise<PageParams> }) => {
170170 { countryEvents . map ( ( event , index ) => (
171171 < LinkBox
172172 key = { index }
173- className = "flex flex-col justify-between gap-2 rounded-lg p-2 hover:bg-background-highlight md:flex-row"
173+ className = "hover:bg-background-highlight flex flex-col justify-between gap-2 rounded-lg p-2 md:flex-row"
174174 >
175175 < div className = "flex flex-col gap-2 md:flex-row md:items-center" >
176176 < div >
@@ -206,7 +206,7 @@ const Page = async (props: { params: Promise<PageParams> }) => {
206206
207207 < div
208208 id = "torch-history"
209- className = "my-32 flex w-full scroll-mt-32 flex-col bg-gradient -to-b from-[#161A36] via-[#161A36] via-60% to-[#9C63F8] md:rounded-3xl"
209+ className = "my-32 flex w-full scroll-mt-32 flex-col bg-linear -to-b from-[#161A36] via-[#161A36] via-60% to-[#9C63F8] md:rounded-3xl"
210210 >
211211 < div className = "p-8" >
212212 < div className = "relative" >
@@ -224,13 +224,13 @@ const Page = async (props: { params: Promise<PageParams> }) => {
224224 disablePictureInPicture
225225 playsInline
226226 />
227- < div className = "pointer-events-none absolute top-0 h-full w-full select-none bg-[url('/images/10-year-anniversary/torch-overlay.png')] bg-contain bg-center bg-no-repeat" />
227+ < div className = "pointer-events-none absolute top-0 h-full w-full bg-[url('/images/10-year-anniversary/torch-overlay.png')] bg-contain bg-center bg-no-repeat select-none " />
228228 </ div >
229229 </ div >
230230 { /* Curved text */ }
231231 < Curved10YearsText
232232 viewBox = "0 0 356 186"
233- className = "absolute left-1/2 top-0 h-min w-full max-w-[600px] -translate-x-1/2"
233+ className = "absolute top-0 left-1/2 h-min w-full max-w-[600px] -translate-x-1/2"
234234 width = "100%"
235235 height = "auto"
236236 />
@@ -239,7 +239,7 @@ const Page = async (props: { params: Promise<PageParams> }) => {
239239
240240 < TorchHistorySwiper holders = { torchHolders } />
241241
242- < div className = "flex flex-col gap-12 px-8 pb-24 pt-12 text-body-inverse sm:px-16 md:flex-row dark:text-body " >
242+ < div className = "text-body-inverse dark:text-body flex flex-col gap-12 px-8 pt-12 pb-24 sm:px-16 md:flex-row" >
243243 < div className = "flex flex-1 flex-col gap-8" >
244244 < p >
245245 < Translation
@@ -271,10 +271,10 @@ const Page = async (props: { params: Promise<PageParams> }) => {
271271 < div className = "flex w-full flex-col items-center gap-8 px-8 py-8 lg:flex-row" >
272272 < div className = "flex flex-1 flex-col gap-6" >
273273 < h2 className = "flex flex-col gap-2 font-black" >
274- < span className = "text-4xl text- accent-a" >
274+ < span className = "text-accent-a text-4xl " >
275275 { t ( "page-10-year-innovation-title" ) }
276276 </ span >
277- < span className = "text-5xl text-body md:text-7xl" >
277+ < span className = "text-body text-5xl md:text-7xl" >
278278 { t ( "page-10-year-innovation-subtitle" ) }
279279 </ span >
280280 </ h2 >
@@ -292,10 +292,10 @@ const Page = async (props: { params: Promise<PageParams> }) => {
292292 < div className = "relative flex max-w-[350px] flex-1 flex-col gap-6" >
293293 < div className = "flex flex-col gap-6 lg:sticky lg:top-64 lg:mb-24" >
294294 < h2 className = "flex flex-col gap-2 font-black" >
295- < span className = "text-4xl text- accent-a" >
295+ < span className = "text-accent-a text-4xl " >
296296 { t ( "page-10-year-adoption-title" ) }
297297 </ span >
298- < span className = "text-5xl text-body md:text-7xl" >
298+ < span className = "text-body text-5xl md:text-7xl" >
299299 { t ( "page-10-year-adoption-subtitle" ) }
300300 </ span >
301301 </ h2 >
@@ -348,10 +348,10 @@ const Page = async (props: { params: Promise<PageParams> }) => {
348348 < div className = "flex max-w-[350px] flex-1 flex-col gap-6" >
349349 < div className = "flex flex-col gap-6 lg:sticky lg:top-64 lg:mb-24" >
350350 < h2 className = "flex flex-col gap-2 font-black" >
351- < span className = "text-4xl text- accent-a" >
351+ < span className = "text-accent-a text-4xl " >
352352 { t ( "page-10-year-stories-title" ) }
353353 </ span >
354- < span className = "text-5xl text-body md:text-7xl" >
354+ < span className = "text-body text-5xl md:text-7xl" >
355355 { t ( "page-10-year-stories-subtitle" ) }
356356 </ span >
357357 </ h2 >
0 commit comments