···11-<template>Home</template>
11+<script setup lang="ts">
22+import { usePosts } from "@/hooks/usePosts.hook";
33+44+const posts = usePosts();
55+</script>
66+77+<template>
88+ <h1>Hi! I'm Julien. 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>
1414+1515+ <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>
2222+ </section>
2323+</template>
···11+---
22+title: An introduction to production flow
33+---
44+55+# {title}
66+77+Dear developers, how clear is it for you the way you build an app?
88+99+You may answer "Easy! There are few steps:"
1010+1111+1. Talking to the client
1212+2. Getting the design
1313+3. Coding
1414+4. deploying to users
1515+1616+But how exactly? What does "talking to the client" really mean? And "coding" ?
1717+1818+In lean, one particular important concept is **Visual Management**: *doing by seeing*. For that, we want to be clear on how we work.
1919+2020+May I ask you some questions?
2121+2222+First, can you name your different step before having your app in production?
2323+2424+<ProductionFlow />
+3-3
src/site.ts
···11export default {
22- title: 'îles',
33- description: 'Islands of interactivity with Vue in Vite.js'
44-}
22+ title: "Julien Calixte",
33+ description: `Julien Calixte's blog`,
44+};