|
|
@@ -64,10 +64,10 @@ function LimitsGraph(props: { href: string }) {
|
|
|
{ id: "glm-5.2", name: "GLM-5.2", req: 880, d: "100ms" },
|
|
|
{ id: "qwen3.7-max", name: "Qwen3.7 Max", req: 950, d: "110ms" },
|
|
|
{ id: "kimi-k2.7-code", name: "Kimi K2.7 Code", req: 1150, d: "150ms" },
|
|
|
- { id: "mimo-v2.5-pro", name: "MiMo-V2.5-Pro", req: 3250, d: "210ms" },
|
|
|
- { id: "deepseek-v4-pro", name: "DeepSeek V4 Pro", req: 3450, d: "240ms" },
|
|
|
- { id: "qwen3.7-plus", name: "Qwen3.7 Plus", req: 4300, d: "250ms" },
|
|
|
- { id: "minimax-m3", name: "MiniMax M3 (3x usage)", req: 9600, baseReq: 3200, d: "280ms" },
|
|
|
+ { id: "minimax-m3", name: "MiniMax M3", req: 3200, d: "210ms" },
|
|
|
+ { id: "mimo-v2.5-pro", name: "MiMo-V2.5-Pro", req: 3250, d: "240ms" },
|
|
|
+ { id: "deepseek-v4-pro", name: "DeepSeek V4 Pro", req: 3450, d: "270ms" },
|
|
|
+ { id: "qwen3.7-plus", name: "Qwen3.7 Plus", req: 4300, d: "300ms" },
|
|
|
{ id: "mimo-v2.5", name: "MiMo-V2.5", req: 30100, d: "340ms" },
|
|
|
{ id: "deepseek-v4-flash", name: "DeepSeek V4 Flash", req: 31650, d: "340ms" },
|
|
|
]
|
|
|
@@ -157,24 +157,12 @@ function LimitsGraph(props: { href: string }) {
|
|
|
<rect
|
|
|
x={left}
|
|
|
y={gy(i()) - bh / 2}
|
|
|
- width={Math.max(0, x(ratio(m.baseReq ?? m.req)) - left)}
|
|
|
+ width={Math.max(0, x(ratio(m.req)) - left)}
|
|
|
height={bh}
|
|
|
data-bar
|
|
|
data-kind="go"
|
|
|
data-model={m.id}
|
|
|
- data-segment={m.baseReq ? "base" : undefined}
|
|
|
/>
|
|
|
- {m.baseReq && (
|
|
|
- <rect
|
|
|
- x={x(ratio(m.baseReq)) + 2}
|
|
|
- y={gy(i()) - bh / 2}
|
|
|
- width={Math.max(0, x(ratio(m.req)) - x(ratio(m.baseReq)) - 2)}
|
|
|
- height={bh}
|
|
|
- data-bar
|
|
|
- data-kind="promo"
|
|
|
- data-model={m.id}
|
|
|
- />
|
|
|
- )}
|
|
|
</g>
|
|
|
)}
|
|
|
</For>
|
|
|
@@ -264,12 +252,6 @@ export default function Home() {
|
|
|
|
|
|
<div data-component="content">
|
|
|
<section data-component="hero">
|
|
|
- <div data-component="desktop-app-banner">
|
|
|
- <span data-slot="badge">{i18n.t("home.banner.badge")}</span>
|
|
|
- <div data-slot="content">
|
|
|
- <span data-slot="text">{i18n.t("go.banner.text")}</span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
<div data-slot="hero-copy">
|
|
|
<img data-slot="zen logo light" src={goLogoLight} alt="" />
|
|
|
<img data-slot="zen logo dark" src={goLogoDark} alt="" />
|