add the link from homepage and add titles

This commit is contained in:
Julien Calixte
2023-07-30 20:36:16 +02:00
parent b27e0416c0
commit 12b270c27e
4 changed files with 21 additions and 1 deletions

View File

@@ -126,3 +126,15 @@ li {
flex-direction: row; flex-direction: row;
} }
} }
a {
color: var(--color);
text-decoration: none;
}
a:visited,
a:focus,
a:focus-visible {
color: var(--color);
text-decoration: none;
}

View File

@@ -42,7 +42,9 @@
<ul> <ul>
<li class="takt focusable">Takt</li> <li class="takt focusable">Takt</li>
<li class="one-piece-flow focusable">One piece flow</li> <li class="one-piece-flow focusable">One piece flow</li>
<li class="pull-system focusable">Pull system</li> <li class="pull-system focusable">
<a href="/feature-flow.html">Pull system</a>
</li>
</ul> </ul>
</section> </section>
<section class="people-improvement"> <section class="people-improvement">

View File

@@ -11,6 +11,8 @@ import SimulationDashboard from '@/modules/simulation/SimulationDashboard.vue'
<template> <template>
<div class="flow-article"> <div class="flow-article">
<h1>Pull system</h1>
<h2>Ekiden (駅伝): long-distance running relay race</h2>
<FlowIntro class="text" /> <FlowIntro class="text" />
<SeparatorIcon /> <SeparatorIcon />
<FlowHypothesis class="text" /> <FlowHypothesis class="text" />

View File

@@ -31,6 +31,10 @@ import FlowControls from '@/modules/feature/FlowControls.vue'
In this article we'll focus on how these strategies are efficient and what In this article we'll focus on how these strategies are efficient and what
are the impact on the quality the teams produce. are the impact on the quality the teams produce.
</p> </p>
<h3>The push system: start features as many as possible</h3>
<h3>The pull system: make features only when the next team needs it</h3>
<h3>Problem solving: no production, just reflection</h3>
<FlowControls /> <FlowControls />
</div> </div>
</template> </template>