16 lines
541 B
Vue
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>
|