your-gold/layouts/default.vue
2025-05-29 12:26:19 +02:00

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