init project
This commit is contained in:
19
layouts/default.vue
Normal file
19
layouts/default.vue
Normal file
@ -0,0 +1,19 @@
|
||||
<template>
|
||||
<div
|
||||
class="bg-bg-light dark:bg-bg-dark font-inter overflow-hidden min-h-screen flex flex-col"
|
||||
>
|
||||
<HeaderBlock />
|
||||
<div class="flex-1">
|
||||
<slot />
|
||||
</div>
|
||||
<!-- <footer-block /> -->
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import HeaderBlock from "~/components/HeaderBlock.vue";
|
||||
|
||||
useHead({
|
||||
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.png" }],
|
||||
});
|
||||
</script>
|
Reference in New Issue
Block a user