@@ -119,7 +119,7 @@ function HowItWorks({ lang }: { lang: SupportedLanguage }) {
119119 < div className = "mb-4 text-left font-medium text-[#AFB0C3]" >
120120 { item . description }
121121 </ div >
122- < div className = "relative aspect-[ 4/3] w-full overflow-hidden rounded-xl" >
122+ < div className = "relative aspect-4/3 w-full overflow-hidden rounded-xl" >
123123 < Image
124124 src = { item . image }
125125 alt = { item . title }
@@ -149,13 +149,13 @@ function HowItWorks({ lang }: { lang: SupportedLanguage }) {
149149 className = { cn (
150150 "transform cursor-pointer bg-transparent p-6 transition-all duration-300 ease-in-out hover:-translate-y-1 hover:shadow-xl" ,
151151 i === activeIndex
152- ? "border-white/20 bg-[#1B1728] shadow-md shadow-white/10 ring-1 ring-white/10"
152+ ? "border-white/20 bg-[#1B1728] shadow-md ring-1 shadow-white/10 ring-white/10"
153153 : "border-[#4E4566] hover:border-white/20 hover:bg-[#1f1a2f]/40 hover:ring-1 hover:ring-white/10"
154154 ) } >
155155 < h3 className = "mb-1 text-xl font-semibold text-white" >
156156 { item . title }
157157 </ h3 >
158- < p className = "text-base text-[#AFB0C3] text-muted-foreground " >
158+ < p className = "text-muted-foreground text- base text-[#AFB0C3]" >
159159 { item . description }
160160 </ p >
161161 </ Card >
@@ -164,7 +164,7 @@ function HowItWorks({ lang }: { lang: SupportedLanguage }) {
164164 </ div >
165165
166166 < div className = "flex min-h-[100%] items-center justify-center rounded-2xl bg-[#302A43] p-3" >
167- < div className = "relative aspect-[ 3/3] w-full max-w-md md:aspect-[ 4/3] " >
167+ < div className = "relative aspect-3/3 w-full max-w-md md:aspect-4/3" >
168168 < Image
169169 src = { getHowItWorks ( lang ) [ activeIndex ] . image }
170170 alt = { getHowItWorks ( lang ) [ activeIndex ] . title }
@@ -196,7 +196,7 @@ function WhatYouGet({ lang }: { lang: SupportedLanguage }) {
196196 transition = { { duration : 0.6 } }
197197 key = { idx }
198198 className = "relative flex flex-col items-start justify-start gap-4 pl-6" >
199- < div className = "absolute left -0 top -0 h-full w-[2px] bg-gradient -to-b from-transparent via-white/20 to-transparent" />
199+ < div className = "absolute top -0 left -0 h-full w-[2px] bg-linear -to-b from-transparent via-white/20 to-transparent" />
200200 < Image src = { item . icon } alt = { item . title } width = { 32 } height = { 32 } />
201201 < p className = "text-base font-semibold text-white/90 md:text-xl" >
202202 { item . title }
@@ -330,7 +330,7 @@ function CTASection({ lang }: { lang: SupportedLanguage }) {
330330
331331 return (
332332 < section className = "w-full px-4 py-5 md:py-8" >
333- < div className = "custom-glow-border relative mx-auto max-w-5xl overflow-hidden rounded-3xl bg-inferenceai-indigo p-6 text-center md:p-10" >
333+ < div className = "custom-glow-border bg-inferenceai-indigo relative mx-auto max-w-5xl overflow-hidden rounded-3xl p-6 text-center md:p-10" >
334334 < div className = "absolute inset-0 z-0" >
335335 < Image
336336 src = "/images/inferenceai/cta-background.png"
@@ -341,7 +341,7 @@ function CTASection({ lang }: { lang: SupportedLanguage }) {
341341 < div className = "absolute inset-0 bg-black/30" />
342342 </ div >
343343 < div className = "relative z-20 space-y-4 text-white md:space-y-6" >
344- < h2 className = "text-center text-2xl font-semibold leading-8 md:text-4xl xl:text-[48px]" >
344+ < h2 className = "text-center text-2xl leading-8 font-semibold md:text-4xl xl:text-[48px]" >
345345 { inferenceaiCtaHeading ( lang ) }
346346 </ h2 >
347347 < p className = "mx-auto max-w-xl text-lg md:text-[22px]" >
0 commit comments