File size: 525 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import { useTranslate } from 'i18n-calypso';
import VideoPressIframe from 'calypso/components/jetpack/videopress-iframe';
export default function IntroVideo() {
const translate = useTranslate();
const videoURL =
'https://video.wordpress.com/embed/Z9piKY9s?hd=1&autoPlay=0&permalink=1&loop=0&preloadContent=metadata&muted=0&playsinline=0&controls=1&cover=1%27';
const title = translate( 'Jetpack Manage Overview' );
return <VideoPressIframe videoURL={ videoURL } title={ title } />;
}
|