diff --git a/web/app/[locale]/blog/cmux-claude-teams/page.tsx b/web/app/[locale]/blog/cmux-claude-teams/page.tsx
index 25abae72..4c9f0e65 100644
--- a/web/app/[locale]/blog/cmux-claude-teams/page.tsx
+++ b/web/app/[locale]/blog/cmux-claude-teams/page.tsx
@@ -62,6 +62,9 @@ export default function CmuxClaudeTeamsPage() {
{t.rich("p1", {
code: (chunks) => {chunks},
+ agentTeamsLink: (chunks) => (
+ {chunks}
+ ),
})}
diff --git a/web/app/[locale]/blog/gpl/page.tsx b/web/app/[locale]/blog/gpl/page.tsx
index 102a88d0..ac777c37 100644
--- a/web/app/[locale]/blog/gpl/page.tsx
+++ b/web/app/[locale]/blog/gpl/page.tsx
@@ -49,8 +49,6 @@ export default function GplPage() {
{t("p1")}
- {t("p2")}
- {t("p3")}
>
);
}
diff --git a/web/app/[locale]/components/blog-posts.ts b/web/app/[locale]/components/blog-posts.ts
index d5e40818..2dc99d22 100644
--- a/web/app/[locale]/components/blog-posts.ts
+++ b/web/app/[locale]/components/blog-posts.ts
@@ -29,7 +29,7 @@ export const blogPosts = [
title: "cmux is now GPL",
date: "2026-03-30",
summary:
- "cmux relicensed from AGPL to GPL. Copyleft stays, corporate adoption gets easier.",
+ "cmux relicensed from AGPL-3.0 to GPL-3.0.",
},
{
slug: "cmd-shift-u",
diff --git a/web/app/[locale]/docs/agent-integrations/claude-code-teams/page.tsx b/web/app/[locale]/docs/agent-integrations/claude-code-teams/page.tsx
index e594661d..5c30934b 100644
--- a/web/app/[locale]/docs/agent-integrations/claude-code-teams/page.tsx
+++ b/web/app/[locale]/docs/agent-integrations/claude-code-teams/page.tsx
@@ -1,8 +1,6 @@
import { useTranslations } from "next-intl";
import { getTranslations } from "next-intl/server";
import { CodeBlock } from "../../../components/code-block";
-import { Callout } from "../../../components/callout";
-import { Link } from "../../../../../i18n/navigation";
export async function generateMetadata({ params }: { params: Promise<{ locale: string }> }) {
const { locale } = await params;
@@ -20,12 +18,6 @@ export default function ClaudeCodeTeamsPage() {
<>
{t("title")}
-
- {t.rich("nightlyWarning", {
- nightly: (chunks) => {chunks},
- })}
-
-
{t("intro")}