This commit is contained in:
mohadese namavar
2024-06-16 00:22:14 +04:30
commit ec84dfd222
322 changed files with 77942 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<template>
<ul v-if="banners">
<li v-for="({ link, src }, i) in banners" :key="i">
<router-link :to="link">
<img :src="src" />
</router-link>
</li>
</ul>
</template>
<script setup>
const { banners = [] } = inject('data')
</script>
<style lang="scss">
.blog>aside>ul {
@apply flex-col gap-10 justify-end hidden lg:flex;
@apply gap-5 sm:gap-6 md:gap-7 lg:gap-8 xl:gap-9 2xl:gap-10;
li {
img {
@apply w-full max-w-[26.1rem] bg-zinc-300 rounded-[0.6rem] overflow-hidden;
}
}
}
</style>