Files
015/front/layouts/default.vue

11 lines
347 B
Vue

<template>
<div class="h-screen w-screen ">
<GlobalDrawer />
<img class="w-full h-full object-cover absolute inset-0 -z-[1]" src="https://fuwari.vercel.app/_astro/demo-banner.DFyx781H_Z1gN7UP.webp" />
<div class=" h-full w-full flex flex-col items-center lg:p-10 p-5">
<Navbar />
<slot />
</div>
</div>
</template>