docs: Add Python to the links for language integrations

This commit is contained in:
Simon Hausmann 2025-03-22 15:57:41 +01:00 committed by Simon Hausmann
parent 23c98a6e3d
commit 4e6c0a9df7
3 changed files with 15 additions and 1 deletions

View file

@ -12,6 +12,7 @@ import {
CPP_BASE_URL,
RUST_SLINT_CRATE_URL,
NODEJS_BASE_URL,
PYTHON_BASE_URL,
} from "./src/utils/site-config";
// https://astro.build/config
@ -403,6 +404,15 @@ export default defineConfig({
link: `${NODEJS_BASE_URL}`,
attrs: { target: "_blank" },
},
{
label: "Python ↗",
badge: {
text: "beta",
variant: "caution",
},
link: `${PYTHON_BASE_URL}`,
attrs: { target: "_blank" },
},
],
},
]),