19 lines
408 B
Vue
19 lines
408 B
Vue
<template>
|
|
<section>
|
|
<div class="relative z-50">
|
|
<img
|
|
src="/assets/img/webp/hero-banner-content.webp"
|
|
alt="Книги"
|
|
width="100%"
|
|
height="100%"
|
|
/>
|
|
</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>
|