added header, footer, eslint/prettier, and typedoc

This commit is contained in:
2024-09-13 17:06:10 +09:00
parent 845418da60
commit a7dc8d6c8f
56 changed files with 16207 additions and 11147 deletions

View File

@@ -1,12 +1,15 @@
<script setup lang="ts"></script>
<template>
<div>
<TheHeader />
Layout: default
<slot />
<div class="website-content">
<slot />
</div>
<TheFooter />
</div>
</template>
<style scoped></style>
<style scoped>
.website-content {
width: 90%;
margin: auto;
}
</style>