diff --git a/public/images/authors/jetchiang.jpg b/public/images/authors/jetchiang.jpg new file mode 100644 index 0000000..c6034bf Binary files /dev/null and b/public/images/authors/jetchiang.jpg differ diff --git a/public/images/authors/jetchiang.png b/public/images/authors/jetchiang.png deleted file mode 100644 index 6bf0123..0000000 Binary files a/public/images/authors/jetchiang.png and /dev/null differ diff --git a/src/app/blog/authors.ts b/src/app/blog/authors.ts index b172fbf..103f7d4 100644 --- a/src/app/blog/authors.ts +++ b/src/app/blog/authors.ts @@ -32,7 +32,7 @@ export const authors: Author[] = [ id: "jetchiang", name: "Jet Chiang", title: "Linux Foundation Mentee", - photo: "/images/authors/jetchiang.png", + photo: "/images/authors/jetchiang.jpg", bio: "Jet is an aspiring machine learning engineer + researcher studying at the University of Toronto. He is the Linux Foundation Mentee at Kagent for 2025.", }, ]; diff --git a/src/app/docs/kagent/resources/helm/page.mdx b/src/app/docs/kagent/resources/helm/page.mdx index 2d5deb7..b54ed9d 100644 --- a/src/app/docs/kagent/resources/helm/page.mdx +++ b/src/app/docs/kagent/resources/helm/page.mdx @@ -30,7 +30,7 @@ A Helm chart for kagent, built with Google ADK | file://../agents/promql | promql-agent | | | file://../tools/grafana-mcp | grafana-mcp | | | file://../tools/querydoc | querydoc | | -| oci://ghcr.io/kagent-dev/kmcp/helm | kmcp | ${KMCP_VERSION} | +| oci://ghcr.io/kagent-dev/kmcp/helm | kmcp | $KMCP_VERSION | | oci://ghcr.io/kagent-dev/tools/helm | kagent-tools | 0.0.12 | ## Values diff --git a/src/components/icons/kagent-logo-text.tsx b/src/components/icons/kagent-logo-text.tsx index 3028d78..733984b 100644 --- a/src/components/icons/kagent-logo-text.tsx +++ b/src/components/icons/kagent-logo-text.tsx @@ -2,7 +2,7 @@ import { useTheme } from "next-themes"; import { useState, useEffect } from "react"; -export default function kagentLogoWithText({ className } : { className?: string }) { +export default function KagentLogoWithText({ className } : { className?: string }) { const { resolvedTheme } = useTheme(); const [mounted, setMounted] = useState(false);