Skip to content

Commit 154b50d

Browse files
committed
Code review
1 parent 7bc8af0 commit 154b50d

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

apps/web-roo-code/src/app/cloud/page.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff 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
})}

apps/web-roo-code/src/app/pricing/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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}&nbsp;
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" />

0 commit comments

Comments
 (0)