added whole content

This commit is contained in:
Fedor Katurov 2022-11-03 10:38:11 +06:00
parent 1b5df685cb
commit 8b25e0631a
70 changed files with 5962 additions and 19 deletions

48
pages/index.vue Normal file
View file

@ -0,0 +1,48 @@
<template>
<NuxtLayout name="content">
<main :class="$style.main">
<HomeHeader />
<div :class="$style.reference">
<h1>Cheatsheet</h1>
<div :class="$style.grid">
<HomeContentList />
</div>
</div>
</main>
</NuxtLayout>
</template>
<script>
export default {
scrollToTop: true,
head() {
return {
title: "Obsidian Garden",
};
},
};
definePageMeta({ layout: false });
</script>
<style lang="scss" module>
@import "~~/assets/css/mixins";
.main {
padding-top: 40px;
@include tablet {
padding-top: 0;
}
}
.reference {
padding-top: 20px;
}
.grid {
margin: 40px 5px 0;
}
</style>