summaryrefslogtreecommitdiffhomepage
path: root/packages/console/app/src/routes/workspace
diff options
context:
space:
mode:
authorFrank <[email protected]>2026-02-25 00:31:46 -0500
committerFrank <[email protected]>2026-02-25 00:31:48 -0500
commit6fc5506293eba8f7fc8c2c751fa5d9309d6eaea8 (patch)
tree61e166154bc39121ca70e7602e384752bbea15fc /packages/console/app/src/routes/workspace
parent76b60f3779b2e4d54fa4036759b7064c4649c9ca (diff)
downloadopencode-6fc5506293eba8f7fc8c2c751fa5d9309d6eaea8.tar.gz
opencode-6fc5506293eba8f7fc8c2c751fa5d9309d6eaea8.zip
zen: go
Diffstat (limited to 'packages/console/app/src/routes/workspace')
-rw-r--r--packages/console/app/src/routes/workspace/[id]/billing/index.tsx2
-rw-r--r--packages/console/app/src/routes/workspace/[id]/billing/lite-section.module.css16
-rw-r--r--packages/console/app/src/routes/workspace/[id]/billing/lite-section.tsx7
3 files changed, 23 insertions, 2 deletions
diff --git a/packages/console/app/src/routes/workspace/[id]/billing/index.tsx b/packages/console/app/src/routes/workspace/[id]/billing/index.tsx
index 9fbdad2ef..e039a09ef 100644
--- a/packages/console/app/src/routes/workspace/[id]/billing/index.tsx
+++ b/packages/console/app/src/routes/workspace/[id]/billing/index.tsx
@@ -21,7 +21,7 @@ export default function () {
<Show when={isBlack()}>
<BlackSection />
</Show>
- <Show when={!isBlack() && sessionInfo()?.isBeta}>
+ <Show when={!isBlack()}>
<LiteSection />
</Show>
<BillingSection />
diff --git a/packages/console/app/src/routes/workspace/[id]/billing/lite-section.module.css b/packages/console/app/src/routes/workspace/[id]/billing/lite-section.module.css
index 20662ab61..077ac40e0 100644
--- a/packages/console/app/src/routes/workspace/[id]/billing/lite-section.module.css
+++ b/packages/console/app/src/routes/workspace/[id]/billing/lite-section.module.css
@@ -147,12 +147,26 @@
}
[data-slot="promo-description"] {
- font-size: var(--font-size-sm);
+ font-size: var(--font-size-md);
color: var(--color-text-secondary);
line-height: 1.5;
margin-top: var(--space-2);
}
+ [data-slot="promo-models-title"] {
+ font-size: var(--font-size-md);
+ font-weight: 600;
+ margin-top: var(--space-4);
+ }
+
+ [data-slot="promo-models"] {
+ margin: var(--space-2) 0 0 var(--space-4);
+ padding: 0;
+ font-size: var(--font-size-md);
+ color: var(--color-text-secondary);
+ line-height: 1.4;
+ }
+
[data-slot="subscribe-button"] {
align-self: flex-start;
margin-top: var(--space-4);
diff --git a/packages/console/app/src/routes/workspace/[id]/billing/lite-section.tsx b/packages/console/app/src/routes/workspace/[id]/billing/lite-section.tsx
index c9192fdcf..568a8710f 100644
--- a/packages/console/app/src/routes/workspace/[id]/billing/lite-section.tsx
+++ b/packages/console/app/src/routes/workspace/[id]/billing/lite-section.tsx
@@ -252,6 +252,13 @@ export function LiteSection() {
<h2>{i18n.t("workspace.lite.promo.title")}</h2>
</div>
<p data-slot="promo-description">{i18n.t("workspace.lite.promo.description")}</p>
+ <h3 data-slot="promo-models-title">{i18n.t("workspace.lite.promo.modelsTitle")}</h3>
+ <ul data-slot="promo-models">
+ <li>Kimi K2.5</li>
+ <li>GLM-5</li>
+ <li>MiniMax M2.5</li>
+ </ul>
+ <p data-slot="promo-description">{i18n.t("workspace.lite.promo.footer")}</p>
<button
data-slot="subscribe-button"
data-color="primary"