File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
apps/web-roo-code/src/app Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -203,6 +203,20 @@ export default function CloudPage() {
203203 < p className = "leading-relaxed font-light text-muted-foreground" >
204204 { feature . description }
205205 </ p >
206+ { feature . logos && (
207+ < div className = "mt-4 flex flex-wrap items-center gap-4" >
208+ { feature . logos . map ( ( logo ) => (
209+ < Image
210+ key = { logo }
211+ width = { 20 }
212+ height = { 20 }
213+ className = "w-5 h-5 overflow-clip opacity-50 dark:invert"
214+ src = { `/logos/${ logo . toLowerCase ( ) } .svg` }
215+ alt = { `${ logo } Logo` }
216+ />
217+ ) ) }
218+ </ div >
219+ ) }
206220 </ li >
207221 )
208222 } ) }
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ export default function PricingPage() {
180180 < p className = "text-sm text-muted-foreground font-light mb-2" >
181181 { tier . featuresIntro }
182182 </ p >
183- < ul className = "space-y-3 my-0 min-h-37 " >
183+ < ul className = "space-y-3 my-0 h-[148px] " >
184184 { tier . features . map ( ( feature ) => (
185185 < li key = { feature } className = "flex items-start gap-2" >
186186 < Check className = "mt-0.5 h-4 w-4 text-muted-foreground shrink-0" />
You can’t perform that action at this time.
0 commit comments