diff options
Diffstat (limited to 'packages/console/app/src/routes/workspace')
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" |
