Files
Cloud-Blog/layouts/default.vue
Al Asad Nur Riyad eece29af28 Update readme and add myself page
Signed-off-by: Al Asad Nur Riyad <asadnurriyad@gmail.com>
2023-05-04 01:50:28 +06:00

23 lines
387 B
Vue

<template>
<div class="gd-container font-spacegrotesk">
<header class="fixed w-full bg-white 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>