Files
ebook/pages/index/_ui/heroBanner/heroBanner.vue
koziavin 94d008ca7d
All checks were successful
Deploy Nuxt App / deploy (push) Successful in 1m31s
add html-validator + fix html ceo code
2025-06-20 12:21:00 +04:00

14 lines
344 B
Vue

<template>
<section>
<div class="relative z-50">
<img src="/assets/img/webp/hero-banner-content.webp" alt="Книги" />
</div>
<div class="flex flex-row justify-between pl-16 pr-24">
<BuyContent />
</div>
</section>
</template>
<script setup lang="ts">
import BuyContent from "./_ui/buyContent.vue";
</script>