Files
curso-langchain/slides/global-top.vue
T

15 lines
500 B
Vue

<script setup>
import { useNav } from '@slidev/client'
const { currentPage } = useNav()
</script>
<template>
<div
v-if="currentPage > 1"
style="position:fixed;top:10px;left:0;right:0;display:flex;justify-content:space-between;align-items:center;padding:0 28px;z-index:100;pointer-events:none;opacity:0.22;"
>
<img src="/EITB.svg" style="height:14px;width:auto;object-fit:contain;" />
<img src="/nykk.png" style="height:8px;width:auto;object-fit:contain;" />
</div>
</template>