From b5a7856fba6945cdc5bbd1cdc471d48609cb43b0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 12:44:13 +0000 Subject: [PATCH 1/5] Initial plan From b66610c3b671e2619087bdaf745de7483ef5fbae Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 12:53:21 +0000 Subject: [PATCH 2/5] Add Video component for Astro Starlight documentation Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- docs/astro.config.mjs | 1 + docs/public/videos/README.md | 47 +++++++++ docs/src/components/Video.astro | 98 +++++++++++++++++++ .../docs/examples/video-component-demo.mdx | 98 +++++++++++++++++++ 4 files changed, 244 insertions(+) create mode 100644 docs/public/videos/README.md create mode 100644 docs/src/components/Video.astro create mode 100644 docs/src/content/docs/examples/video-component-demo.mdx diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index d5c9c28c12..758daf25c8 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -214,6 +214,7 @@ export default defineConfig({ { label: 'Custom Agents', link: '/reference/copilot-custom-agents/' }, { label: 'GH-AW as MCP Server', link: '/setup/mcp-server/' }, { label: 'MCP Gateway', link: '/reference/mcp-gateway/' }, + { label: 'Video Component', link: '/examples/video-component-demo/' }, { label: 'FAQ', link: '/reference/faq/' }, ], }, diff --git a/docs/public/videos/README.md b/docs/public/videos/README.md new file mode 100644 index 0000000000..e4a8272f3e --- /dev/null +++ b/docs/public/videos/README.md @@ -0,0 +1,47 @@ +# Videos Directory + +This directory contains video files used in the documentation. + +## Usage + +Place video files here and reference them in documentation using the Video component: + +```mdx +import Video from '../../../components/Video.astro'; + +