mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-24 00:01:03 +08:00
Added YouTube OnBoarding to the App (Currently in testing and this is the beta branch :) Oh also updated some more stuff as well!
16 lines
512 B
Vue
16 lines
512 B
Vue
<template>
|
|
<!--YouTube Embed-->
|
|
<div class="justify-center absolute inset-0 flex flex-col">
|
|
<iframe
|
|
width="560"
|
|
height="315"
|
|
src="https://www.youtube-nocookie.com/embed/8P3qgVm6m6g?si=0t8eR0wtWv6b3REE"
|
|
title="YouTube video player"
|
|
frameborder="0"
|
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
|
referrerpolicy="strict-origin-when-cross-origin"
|
|
allowfullscreen
|
|
></iframe>
|
|
</div>
|
|
</template>
|