17 lines
394 B
Vue
17 lines
394 B
Vue
<template>
|
|
<div
|
|
class="bg-bg-light dark:bg-bg-dark text-text-light dark:text-text-dark font-inter flex min-h-screen flex-col overflow-hidden"
|
|
>
|
|
<HeaderBlock />
|
|
<div class="flex-1">
|
|
<slot />
|
|
</div>
|
|
<!-- <footer-block /> -->
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
useHead({
|
|
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.png" }],
|
|
});
|
|
</script> |