Skip to content

Commit 679f137

Browse files
committed
plans
1 parent 730a477 commit 679f137

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) {
@@ -235,6 +237,14 @@ export function BillingStep({ onNext, onBack }: BillingStepProps) {
235237
/>
236238
<Text size="2">Local and cloud execution</Text>
237239
</Flex>
240+
<Flex align="center" gap="2">
241+
<Check
242+
size={14}
243+
weight="bold"
244+
style={{ color: "var(--accent-9)" }}
245+
/>
246+
<Text size="2">All Claude and Codex models</Text>
247+
</Flex>
238248
</Flex>
239249
<Flex justify="end" gap="3" mt="4">
240250
<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)