···11-<script setup lang="ts">
22-import { usePosts } from "@/hooks/usePosts.hook";
33-44-const posts = usePosts();
55-</script>
11+<script setup lang="ts"></script>
6273<template>
88- <h1>Hi! I'm <julien-calixte />. A mobile & web developer.</h1>
99- <p>
1010- I am into building things with code. I love creating offline first
1111- Progressive Web Apps. I've been doing programmation for 5 years and lead
1212- dev/technical architecture for 1 year now.
1313- </p>
44+ <section class="welcome">
55+ <about-me />
1461515- <section>
1616- <h2>My blog posts</h2>
1717- <ul>
1818- <li v-for="post in posts" :key="post.href">
1919- <a :href="post.href">{{ post.title }}</a>
2020- </li>
2121- </ul>
77+ <blog-posts />
228 </section>
239</template>
1010+1111+<style scoped lang="scss">
1212+.welcome {
1313+ max-width: 800px;
1414+ margin: auto;
1515+}
1616+</style>
···11+<script setup lang="ts"></script>
22+33+<template>
44+ <h1>Hi! I'm <julien-calixte />. A mobile & web developer.</h1>
55+ <section class="about-me">
66+ <p>I am into building things with code.</p>
77+ </section>
88+</template>
99+1010+<style scoped lang="scss">
1111+.about-me {
1212+}
1313+</style>