27 lines
387 B
Vue
27 lines
387 B
Vue
<script setup lang="ts"></script>
|
|
|
|
<template>
|
|
<section class="welcome">
|
|
<about-me />
|
|
|
|
<blog-posts />
|
|
|
|
<my-projects />
|
|
|
|
<h3>My books</h3>
|
|
|
|
<p>
|
|
I'm glad to share you <a href="/my-books">the books</a> I'm currently reading.
|
|
</p>
|
|
|
|
</section>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.welcome {
|
|
max-width: 800px;
|
|
margin: auto;
|
|
padding: 1rem;
|
|
}
|
|
</style>
|