Files
Cloud-Blog/app/layouts/default.vue
Nicolhetti 5163e756f0 Update nuxt to version 4 (#92)
* Nuxt 3.17.4 and other dependencies updated

* Temporary fix (maybe) of the Inline Code

* Update nuxt to version 4
2025-09-22 18:53:50 +06:00

23 lines
409 B
Vue

<template>
<div class="gd-container font-spacegrotesk">
<header class="fixed w-full bg-[#F1F2F4] dark:bg-slate-950 z-10">
<MainHeader />
</header>
<main>
<div class="p-9" />
<slot />
</main>
<footer>
<MainFooter />
</footer>
</div>
</template>
<style scoped>
.gd-container {
display: grid;
grid-template-rows: 1fr auto;
min-height: 100vh;
}
</style>