Skip to content

Commit e1dba19

Browse files
committed
Credit pricing FAQ
1 parent c35e2c8 commit e1dba19

File tree

1 file changed

+22
-11
lines changed
  • apps/web-roo-code/src/app/pricing

1 file changed

+22
-11
lines changed

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

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ export default function PricingPage() {
179179
<p className="text-sm text-muted-foreground font-light mb-2">
180180
{tier.featuresIntro}&nbsp;
181181
</p>
182-
<ul className="space-y-3 my-0 min-h-40">
182+
<ul className="space-y-3 my-0 min-h-37">
183183
{tier.features.map((feature) => (
184184
<li key={feature} className="flex items-start gap-2">
185185
<Check className="mt-0.5 h-4 w-4 text-muted-foreground shrink-0" />
@@ -200,12 +200,10 @@ export default function PricingPage() {
200200
</p>
201201
)}
202202

203-
{tier.trial && (
204-
<p className="text-xs text-muted-foreground mb-4">
205-
{tier.trial}
206-
{tier.cancellation}&nbsp;
207-
</p>
208-
)}
203+
<p className="text-xs text-muted-foreground mb-4">
204+
{tier.trial}
205+
{tier.cancellation}
206+
</p>
209207

210208
{tier.cta.isContactForm ? (
211209
<ContactForm
@@ -245,7 +243,6 @@ export default function PricingPage() {
245243
<div className="container mx-auto px-4 sm:px-6 lg:px-8">
246244
<div className="mx-auto max-w-3xl text-center">
247245
<h2 className="text-3xl font-bold tracking-tight sm:text-4xl">Frequently Asked Questions</h2>
248-
<p className="mt-4 text-lg text-muted-foreground">Got questions about our pricing?</p>
249246
</div>
250247
<div className="mx-auto mt-12 grid max-w-5xl gap-8 md:grid-cols-2">
251248
<div className="rounded-lg border border-border bg-card p-6">
@@ -259,15 +256,29 @@ export default function PricingPage() {
259256
<div className="rounded-lg border border-border bg-card p-6">
260257
<h3 className="font-semibold">Is there a free trial?</h3>
261258
<p className="mt-2 text-sm text-muted-foreground">
262-
Yes, all paid plans come with a 14-day free trial.
259+
Yes, all paid plans come with a 14-day free trial to try out functionality.
260+
</p>
261+
<p className="mt-2 text-sm text-muted-foreground">
262+
To use Cloud Agents, you can buy credits.
263+
</p>
264+
</div>
265+
<div className="rounded-lg border border-border bg-card p-6">
266+
<h3 className="font-semibold">How do Cloud Agent credits work?</h3>
267+
<p className="mt-2 text-sm text-muted-foreground">
268+
Cloud Agents are a version of Roo running in the cloud without depending on your IDE.
269+
You can run as many as you want, and bring your own inference provider key.
270+
</p>
271+
<p className="mt-2 text-sm text-muted-foreground">
272+
To cover our costs, we charge $0.25 per million tokens used by them (outside of
273+
inference costs).
263274
</p>
264275
</div>
265276
<div className="rounded-lg border border-border bg-card p-6">
266277
<h3 className="font-semibold">Do I need a credit card for the free trial?</h3>
267278
<p className="mt-2 text-sm text-muted-foreground">
268-
Yes, but you won&apos;t be charged until your trial ends. You can cancel anytime with
269-
one click .
279+
Yes, but you won&apos;t be charged until your trial ends, except for credit purchases.
270280
</p>
281+
<p className="mt-2 text-sm text-muted-foreground">You can cancel anytime with one click.</p>
271282
</div>
272283
<div className="rounded-lg border border-border bg-card p-6">
273284
<h3 className="font-semibold">What payment methods do you accept?</h3>

0 commit comments

Comments
 (0)