Files
ebook/src/layout/UiLayout.vue
koziavin 42235420b9
All checks were successful
Deploy Application / deploy (push) Successful in 5s
chore: update
2025-06-12 21:30:21 +04:00

16 lines
541 B
Vue

<template>
<div
class="min-h-svh bg-black-50 lato-regular relative overflow-visible before:content-[''] before:absolute before:bottom-0 before:h-[520px] before:w-full before:bg-[url(/src/assets/img/webp/footer-flowers.webp)] before:bg-no-repeat before:bg-bottom before:bg-cover before:z-0"
>
<UiHeader />
<UiMain />
<UiFooter />
</div>
</template>
<script setup lang="ts">
import UiFooter from './UiFooter/UiFooter.vue'
import UiHeader from './UiHeader/UiHeader.vue'
import UiMain from './UiMain/UiMain.vue'
</script>