@@ -59,6 +59,7 @@ interface PricingTier {
5959 icon : LucideIcon
6060 price : string
6161 period ?: string
62+ creditPrice ?: string
6263 trial ?: string
6364 cancellation ?: string
6465 description : string
@@ -94,14 +95,14 @@ const pricingTiers: PricingTier[] = [
9495 icon : Star ,
9596 price : "$20" ,
9697 period : "/mo" ,
98+ creditPrice : "$0.25" ,
9799 trial : "Free 14-day trial · " ,
98100 cancellation : "Cancel anytime" ,
99101 description : "For pro Roo coders" ,
100- featuresIntro : "Everything in Free, plus: " ,
102+ featuresIntro : "Everything in Free + " ,
101103 features : [
102- "Roomote Control" ,
103- "Start, stop and control tasks from anywhere" ,
104- "Course-correct Roo from afar" ,
104+ "Cloud Agents: PR Reviewer and more" ,
105+ "Roomote Control: Start, stop and control tasks from anywhere" ,
105106 "Paid support" ,
106107 ] ,
107108 cta : {
@@ -114,33 +115,17 @@ const pricingTiers: PricingTier[] = [
114115 icon : Users ,
115116 price : "$99" ,
116117 period : "/mo" ,
118+ creditPrice : "$0.25" ,
117119 trial : "Free 14-day trial · " ,
118120 cancellation : "Cancel anytime" ,
119121 description : "For AI-forward teams" ,
120- featuresIntro : "Everything in Pro, plus: " ,
122+ featuresIntro : "Everything in Pro + " ,
121123 features : [ "Unlimited users (no per-seat cost)" , "Shared configuration & policies" , "Centralized billing" ] ,
122124 cta : {
123125 text : "Get started" ,
124126 href : EXTERNAL_LINKS . CLOUD_APP_SIGNUP + "?redirect_url=/billing" ,
125127 } ,
126128 } ,
127- {
128- name : "Enterprise" ,
129- icon : Building2 ,
130- price : "Custom" ,
131- description : "For complex orgs" ,
132- featuresIntro : "Everything in Team, plus:" ,
133- features : [
134- "SAML SSO provisioning" ,
135- "Custom integrations and terms" ,
136- "Security questionnaires and all that fun stuff" ,
137- "Dedicated support" ,
138- ] ,
139- cta : {
140- text : "Talk to Sales" ,
141- isContactForm : true ,
142- } ,
143- } ,
144129]
145130
146131export default function PricingPage ( ) {
@@ -175,7 +160,7 @@ export default function PricingPage() {
175160 { /* Pricing Tiers */ }
176161 < section className = "" >
177162 < div className = "container mx-auto px-4 sm:px-6 lg:px-8" >
178- < div className = "mx-auto grid max-w-6xl gap-4 lg:grid-cols-4 " >
163+ < div className = "mx-auto grid max-w-6xl gap-4 lg:grid-cols-3 " >
179164 { pricingTiers . map ( ( tier ) => {
180165 const Icon = tier . icon
181166 return (
@@ -194,7 +179,7 @@ export default function PricingPage() {
194179 < p className = "text-sm text-muted-foreground font-light mb-2" >
195180 { tier . featuresIntro }
196181 </ p >
197- < ul className = "space-y-3 my-0" >
182+ < ul className = "space-y-3 my-0 min-h-40 " >
198183 { tier . features . map ( ( feature ) => (
199184 < li key = { feature } className = "flex items-start gap-2" >
200185 < Check className = "mt-0.5 h-4 w-4 text-muted-foreground shrink-0" />
@@ -208,10 +193,19 @@ export default function PricingPage() {
208193 < strong > { tier . price } </ strong >
209194 { tier . period }
210195 </ p >
211- < p className = "text-xs text-muted-foreground mb-4" >
212- { tier . trial }
213- { tier . cancellation }
214- </ p >
196+
197+ { tier . creditPrice && (
198+ < p className = "text-sm text-muted-foreground mb-1" >
199+ + { tier . creditPrice } /M tokens for Cloud tasks
200+ </ p >
201+ ) }
202+
203+ { tier . trial && (
204+ < p className = "text-xs text-muted-foreground mb-4" >
205+ { tier . trial }
206+ { tier . cancellation }
207+ </ p >
208+ ) }
215209
216210 { tier . cta . isContactForm ? (
217211 < ContactForm
@@ -231,6 +225,19 @@ export default function PricingPage() {
231225 } ) }
232226 </ div >
233227 </ div >
228+
229+ < div className = "mx-auto grid max-w-6xl gap-4 mt-4 relative" >
230+ < p className = "bg-background border rounded-2xl p-6 text-center text-sm text-muted-foreground" >
231+ < Building2 className = "inline size-4 mr-2 mb-0.5" />
232+ Need SAML, advanced security, custom integrations or terms? Enterprise is for you.
233+ < Link
234+ href = "/enterprise#contact"
235+ className = "font-medium ml-1 text-blue-500 hover:text-blue-600 dark:text-blue-400 dark:hover:text-blue-300" >
236+ Talk to Sales
237+ </ Link >
238+ .
239+ </ p >
240+ </ div >
234241 </ section >
235242
236243 { /* Additional Information */ }
0 commit comments