diff --git a/docs/src/components/BlogVimeoVideo.tsx b/docs/src/components/BlogVimeoVideo.tsx new file mode 100644 index 000000000..6798d9fd0 --- /dev/null +++ b/docs/src/components/BlogVimeoVideo.tsx @@ -0,0 +1,35 @@ +import clsx from 'clsx'; +import Script from 'next/script'; + +type Props = { + className?: string; + src: string; + title: string; +}; + +export default function BlogVimeoVideo({className, src, title}: Props) { + return ( + <> +
+