this repo has no description
1<script setup lang="ts"></script>
2
3<template>
4 <section class="welcome">
5 <about-me />
6
7 <blog-notes />
8
9 <blog-posts />
10
11 <my-projects />
12
13 <h3>My books</h3>
14
15 <p><a href="/my-books">The books</a> I'm currently reading.</p>
16 </section>
17</template>
18
19<style scoped lang="scss">
20.welcome {
21 max-width: 800px;
22 margin: auto;
23 padding: 1rem;
24}
25</style>