Layout.vue
1 <!-- https://vitepress.dev/guide/extending-default-theme#layout-slots --> 2 <script setup> 3 import DefaultTheme from 'vitepress/theme' 4 </script> 5 6 <template> 7 <DefaultTheme.Layout> 8 <template #home-hero-image> 9 <div> 10 <iframe 11 width="520" 12 height="315" 13 src="https://www.youtube.com/embed/NZEOilcLdKA?si=WrnLR1Mm71FkgFvC?controls=0" 14 title="Codex @ depin:con - Codex: Data Durability Engine & DSN (Presentation)" 15 frameborder="0" 16 allow="encrypted-media" 17 allowfullscreen> 18 </iframe> 19 </div> 20 </template> 21 </DefaultTheme.Layout> 22 </template>