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 @@
@@ -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' } } },