From b0de392d9974387556e0ecaaa15c8a8b750c0423 Mon Sep 17 00:00:00 2001 From: Irozuku Date: Fri, 22 May 2026 18:33:49 -0400 Subject: [PATCH] fix(ui): remove api mention from features section Remove the feature item regarding external API keys --- components/features-section.tsx | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/components/features-section.tsx b/components/features-section.tsx index 372ba86..e725de4 100644 --- a/components/features-section.tsx +++ b/components/features-section.tsx @@ -79,22 +79,20 @@ export function FeaturesSection() { ? "Toda extensión oficial comparte la licencia del núcleo. Auditable, modificable, forkeable bajo los mismos términos." : "Every official extension shares the core license. Auditable, modifiable, forkable under the same terms.", }, - { - num: "04", sub: lang === "es" ? "Ejecución" : "Execution", - title: lang === "es" ? <>Sin claves API externas requeridas. : <>No external API keys required., - body: lang === "es" - ? "Los modelos del núcleo corren con pesos abiertos. El sistema de plugins te permite agregar cualquier modelo —local o vía API— pero el núcleo nunca exige dependencias externas." - : "Core models run entirely on open weights. The plugin system lets you add any model — local or API-backed — but nothing external is ever required.", - }, + { num: "04", sub: "", title: <>, body: "" }, ].map(p => (
-
- {p.num} / {p.sub} -
-

- {p.title} -

-

{p.body}

+ {p.sub && ( + <> +
+ {p.num} / {p.sub} +
+

+ {p.title} +

+

{p.body}

+ + )}
))}