diff --git a/apps/content/src/components/Video.tsx b/apps/content/src/components/Video.tsx index ab5b0447e..6291c620d 100644 --- a/apps/content/src/components/Video.tsx +++ b/apps/content/src/components/Video.tsx @@ -1,10 +1,20 @@ -export default function Video({ src }: { src: string }) { +export default function Video({ + src, + muted = false, +}: { + src: string; + // Unused: MDX parity with the landing renderer; theming is disabled here, + // so only the light source is ever rendered. + srcDark?: string; + muted?: boolean; +}) { return (