|
|
@@ -63,7 +63,7 @@ function LimitsGraph(props: { href: string }) {
|
|
|
const free = 200
|
|
|
const graph = [
|
|
|
{ id: "glm-5.1", name: "GLM-5.1", req: 880, d: "100ms" },
|
|
|
- { id: "kimi-k2.6", name: "Kimi K2.6 (3x usage)", req: 3450, baseReq: 1150, d: "150ms" },
|
|
|
+ { id: "kimi-k2.6", name: "Kimi K2.6", req: 1150, d: "150ms" },
|
|
|
{ id: "mimo-v2.5-pro", name: "MiMo-V2.5-Pro", req: 1290, d: "150ms" },
|
|
|
{ id: "qwen3.6-plus", name: "Qwen3.6 Plus", req: 3300, d: "280ms" },
|
|
|
{ id: "minimax-m2.7", name: "MiniMax M2.7", req: 3400, d: "300ms" },
|
|
|
@@ -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="" />
|