Initial Commit

This commit is contained in:
2021-12-12 17:39:25 +00:00
commit 472a53c2e0
139 changed files with 11404 additions and 0 deletions

30
layouts/default.vue Normal file
View File

@@ -0,0 +1,30 @@
<template>
<div class="min-h-screen dark:bg-gray-900 transition-colors duration-150">
<div>
<Header/>
</div>
<div class="mb-auto">
<Nuxt/>
</div>
<div>
<Footer/>
</div>
</div>
</template>
<style>
.wrapper {
@apply container max-w-screen-xl mx-auto;
}
.wrapper-small {
@apply container max-w-screen-lg mx-auto px-6;
}
.flex-center {
@apply flex justify-center items-center;
}
</style>