Skip to content

Commit 8bb4e31

Browse files
committed
plans
1 parent 0ddc73a commit 8bb4e31

2 files changed

Lines changed: 28 additions & 2 deletions

File tree

apps/code/src/renderer/features/onboarding/components/BillingStep.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,13 @@ interface PlanFeature {
3232
const FREE_FEATURES: PlanFeature[] = [
3333
{ text: "Limited usage" },
3434
{ text: "Local execution only" },
35+
{ text: "All Claude and Codex models" },
3536
];
3637

3738
const PRO_FEATURES: PlanFeature[] = [
3839
{ text: "Unlimited usage*" },
3940
{ text: "Local and cloud execution" },
41+
{ text: "All Claude and Codex models" },
4042
];
4143

4244
export function BillingStep({ onNext, onBack }: BillingStepProps) {
@@ -233,6 +235,14 @@ export function BillingStep({ onNext, onBack }: BillingStepProps) {
233235
/>
234236
<Text size="2">Local and cloud execution</Text>
235237
</Flex>
238+
<Flex align="center" gap="2">
239+
<Check
240+
size={14}
241+
weight="bold"
242+
style={{ color: "var(--accent-9)" }}
243+
/>
244+
<Text size="2">All Claude and Codex models</Text>
245+
</Flex>
236246
</Flex>
237247
<Flex justify="end" gap="3" mt="4">
238248
<Dialog.Close>

apps/code/src/renderer/features/settings/components/sections/PlanUsageSettings.tsx

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,22 @@ export function PlanUsageSettings() {
9393
name="Free"
9494
price="$0"
9595
period="/mo"
96-
features={["Limited usage", "Local execution only"]}
96+
features={[
97+
"Limited usage",
98+
"Local execution only",
99+
"All Claude and Codex models",
100+
]}
97101
isCurrent={!isPro}
98102
/>
99103
<PlanCard
100104
name="Pro"
101105
price="$200"
102106
period="/mo"
103-
features={["Unlimited usage*", "Local and cloud execution"]}
107+
features={[
108+
"Unlimited usage*",
109+
"Local and cloud execution",
110+
"All Claude and Codex models",
111+
]}
104112
isCurrent={isPro}
105113
resetLabel={
106114
isPro && isCanceling && formattedActiveUntil
@@ -309,6 +317,14 @@ export function PlanUsageSettings() {
309317
/>
310318
<Text size="2">Local and cloud execution</Text>
311319
</Flex>
320+
<Flex align="center" gap="2">
321+
<Check
322+
size={14}
323+
weight="bold"
324+
style={{ color: "var(--accent-9)" }}
325+
/>
326+
<Text size="2">All Claude and Codex models</Text>
327+
</Flex>
312328
</Flex>
313329
<Flex justify="end" gap="3" mt="4">
314330
<Dialog.Close>

0 commit comments

Comments
 (0)