From 97ba46d693d6478807832742a9a79705b421edf0 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Thu, 1 Jan 2026 21:46:39 +0100 Subject: [PATCH] feat: starting heijunka article --- 5s.css | 9 ------- heijunka.html | 27 ++++++++++++++++++++ index.html | 7 ++++-- src/AppHeijunka.vue | 28 +++++++++++++++++++++ src/main-heijunka.ts | 5 ++++ src/modules/heijkunka/types/product-type.ts | 1 + vite.config.ts | 3 ++- 7 files changed, 68 insertions(+), 12 deletions(-) create mode 100644 heijunka.html create mode 100644 src/AppHeijunka.vue create mode 100644 src/main-heijunka.ts create mode 100644 src/modules/heijkunka/types/product-type.ts diff --git a/5s.css b/5s.css index e2241b4..031dc3c 100644 --- a/5s.css +++ b/5s.css @@ -34,15 +34,6 @@ h1 { margin: 0 0 0.5rem; } -.created-at { - font-size: 14pt; - margin: 0; -} - -.numeric { - font-family: 'Cutive Mono', monospace; - font-weight: bold; -} article { display: flex; flex-direction: column; diff --git a/heijunka.html b/heijunka.html new file mode 100644 index 0000000..6e4c763 --- /dev/null +++ b/heijunka.html @@ -0,0 +1,27 @@ + + + + + + Exploring 5S + + + + + + + + +
+ + + diff --git a/index.html b/index.html index 35f962d..bb517ef 100644 --- a/index.html +++ b/index.html @@ -107,7 +107,10 @@
    -
  • Heijunka
  • +
  • + + Heijunka +
  • Standards
  • Kaizen
@@ -115,7 +118,7 @@
  • - + 5S
  • Problem solving
  • diff --git a/src/AppHeijunka.vue b/src/AppHeijunka.vue new file mode 100644 index 0000000..c21ca5c --- /dev/null +++ b/src/AppHeijunka.vue @@ -0,0 +1,28 @@ + + + + + diff --git a/src/main-heijunka.ts b/src/main-heijunka.ts new file mode 100644 index 0000000..c201104 --- /dev/null +++ b/src/main-heijunka.ts @@ -0,0 +1,5 @@ +import { createPinia } from 'pinia' +import { createApp } from 'vue' +import App from './AppHeijunka.vue' + +createApp(App).use(createPinia()).mount('#app') diff --git a/src/modules/heijkunka/types/product-type.ts b/src/modules/heijkunka/types/product-type.ts new file mode 100644 index 0000000..8aa52a8 --- /dev/null +++ b/src/modules/heijkunka/types/product-type.ts @@ -0,0 +1 @@ +export type ProductType = 'shirt' | 'jeans' | 'shoes' diff --git a/vite.config.ts b/vite.config.ts index d3a2071..2af1476 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -12,7 +12,8 @@ export default defineConfig({ index: 'index.html', 'pull-system': 'pull-system.html', 'team-leader': 'team-leader.html', - '5s': '5s.html' + '5s': '5s.html', + heijunka: 'heijunka.html' } } },