import { useTranslations } from "next-intl"; import { getTranslations } from "next-intl/server"; import { CodeBlock } from "../../../components/code-block"; export async function generateMetadata({ params }: { params: Promise<{ locale: string }> }) { const { locale } = await params; const t = await getTranslations({ locale, namespace: "docs.claudeCodeTeams" }); return { title: t("metaTitle"), description: t("metaDescription"), }; } export default function ClaudeCodeTeamsPage() { const t = useTranslations("docs.claudeCodeTeams"); return ( <>

{t("title")}

{t("intro")}