this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

🚸 add margins to titles

+26 -17
+1 -1
src/app.ts
··· 11 11 link: [ 12 12 { 13 13 rel: "stylesheet", 14 - href: "https://fonts.googleapis.com/css2?family=Playfair+Display&family=Meow+Script&family=Oxygen+Mono&display=swap", 14 + href: "https://fonts.googleapis.com/css2?family=Noto+Serif+Display&family=Meow+Script&family=Oxygen+Mono&display=swap", 15 15 }, 16 16 ], 17 17 }
+11 -2
src/assets/base.scss
··· 74 74 color: var(--color-text); 75 75 background: var(--color-background); 76 76 transition: color 0.5s, background-color 0.5s; 77 - font-family: 'Playfair Display', serif; 78 - font-size: 18px; 77 + font-family: 'Noto Serif', serif; 78 + font-size: 20px; 79 79 line-height: 1.6rem; 80 80 text-rendering: optimizeLegibility; 81 81 -webkit-font-smoothing: antialiased; ··· 104 104 h5, 105 105 h6 { 106 106 color: var(--primary); 107 + padding-bottom: 0.5rem; 108 + } 109 + 110 + h2, 111 + h3, 112 + h4, 113 + h5, 114 + h6 { 115 + margin-top: 1rem; 107 116 } 108 117 109 118 h1 {
+1 -4
src/components/Welcome.vue
··· 10 10 11 11 <h3>My books</h3> 12 12 13 - <p> 14 - I'm glad to share you <a href="/my-books">the books</a> I'm currently reading. 15 - </p> 16 - 13 + <p><a href="/my-books">The books</a> I'm currently reading.</p> 17 14 </section> 18 15 </template> 19 16
+7 -5
src/components/posts/blog-posts.vue
··· 1 1 <script setup lang="ts"> 2 - import { usePosts } from "@/hooks/usePosts.hook"; 2 + import { usePosts } from "@/hooks/usePosts.hook" 3 3 4 - const posts = usePosts(); 4 + const posts = usePosts() 5 5 </script> 6 6 7 7 <template> 8 8 <div class="blog-posts"> 9 9 <h2>Last posts</h2> 10 - <h3 v-for="post in posts" :key="post.href"> 11 - - <a :href="post.href">{{ post.title }}</a> 12 - </h3> 10 + <ul> 11 + <li v-for="post in posts" :key="post.href"> 12 + <a :href="post.href">{{ post.title }}</a> 13 + </li> 14 + </ul> 13 15 </div> 14 16 </template>
+2 -1
src/components/presentation/about-me.vue
··· 2 2 3 3 <template> 4 4 <h1> 5 - Hi! I'm <julien-calixte version="compact" />. A mobile & web developer. 5 + Hi! I'm <julien-calixte version="compact" />. An Engineer Manager and web 6 + developer. 6 7 </h1> 7 8 <section class="about-me"> 8 9 <p>I am into building things with code.</p>
+4 -4
src/pages/posts/feature-factory.mdx src/pages/posts/feature-flow.mdx
··· 1 1 --- 2 - title: An introduction to the feature factory 2 + title: An introduction to the feature flow 3 3 layout: post 4 4 date: 2022-11-19 5 5 draft: true 6 6 --- 7 7 8 - # An introduction to the feature factory 8 + # An introduction to the feature flow 9 9 10 10 From my experience, project failures mainly come from having mistrust between teams. Therefor lead time due to team availability to solve dependencies increases. 11 11 ··· 13 13 14 14 In this post, I would like to tell you what helped me, how we succeed to engage all the skills needed to develop a product. We'll talk about agility, about lean, about problems. 15 15 16 - ## Creating a visual feature flow 16 + ## Creating flow 17 17 18 18 ### Define the steps 19 19 ··· 38 38 39 39 But how exactly? What does "talking to the client" really mean? And "coding" ? 40 40 41 - In lean, one particular important concept is **Visual Management**: *doing by seeing*. For that, we want to be clear on how we work. 41 + In lean, one particular important concept is **Visual Management**: _doing by seeing_. For that, we want to be clear on how we work. 42 42 43 43 May I ask you some questions? 44 44