Design about page

Signed-off-by: Al Asad Nur Riyad <asadnurriyad@gmail.com>
This commit is contained in:
Al Asad Nur Riyad
2023-05-05 00:18:11 +06:00
parent f25c4dff8c
commit 28ae28be2f
8 changed files with 153 additions and 17 deletions

22
layouts/bio.vue Normal file
View File

@@ -0,0 +1,22 @@
<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>
<AboutFooter />
</footer>
</div>
</template>
<style scoped>
.gd-container {
display: grid;
grid-template-rows: 1fr auto;
min-height: 100vh;
}
</style>