your-gold/layouts/default.vue
2025-05-28 15:56:01 +02:00

21 lines
454 B
Vue

<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">
<HeaderHero />
<slot />
</div>
<!-- <footer-block /> -->
</div>
</template>
<script setup lang="ts">
import HeaderHero from "~/components/sections/main-page/HeaderHero.vue";
useHead({
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.png" }],
});
</script>