diff --git a/CHANGELOG.md b/CHANGELOG.md
index 79879daf..b95b7449 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,8 +9,9 @@
## Changelog
-### **HEAD -> main** 2022/09/21 mandic00@live.com
+### **HEAD -> main** 2022/09/25 mandic00@live.com
+- create funding.yml
- fix rotation interpolation
### **2.10.3** 2022/09/21 mandic00@live.com
diff --git a/README.md b/README.md
index d98e8a2f..c0a849e7 100644
--- a/README.md
+++ b/README.md
@@ -170,9 +170,15 @@ and optionally matches detected face with database of known people to guess thei

+2. **Face ID:**
+Performs validation check on a webcam input to detect a real face and matches it to known faces stored in database
+> [demo/faceid](demo/faceid/index.html)
+
+
+
-2. **3D Rendering:**
+3. **3D Rendering:**
> [human-motion](https://github.com/vladmandic/human-motion)

@@ -181,14 +187,14 @@ and optionally matches detected face with database of known people to guess thei
-3. **VR Model Tracking:**
+4. **VR Model Tracking:**
> [human-three-vrm](https://github.com/vladmandic/human-three-vrm)
> [human-bjs-vrm](https://github.com/vladmandic/human-bjs-vrm)

-4. **Human as OS native application:**
+5. **Human as OS native application:**
> [human-electron](https://github.com/vladmandic/human-electron)
diff --git a/TODO.md b/TODO.md
index bfca2f2e..f9f16337 100644
--- a/TODO.md
+++ b/TODO.md
@@ -50,5 +50,6 @@ Enable via `about:config` -> `gfx.offscreencanvas.enabled`
- Enable model cache when using web workers
- Fix for `face.rotation` interpolation
- Improve NodeJS resolver when using ESM
+- Update demo `demo/faceid`
- Update demo `demo/nodejs/process-folder.js`
and re-process `/samples`
diff --git a/assets/screenshot-faceid.jpg b/assets/screenshot-faceid.jpg
new file mode 100644
index 00000000..ed529ca3
Binary files /dev/null and b/assets/screenshot-faceid.jpg differ
diff --git a/demo/faceid/index.html b/demo/faceid/index.html
index d6a731a0..2e785444 100644
--- a/demo/faceid/index.html
+++ b/demo/faceid/index.html
@@ -19,14 +19,23 @@
body { margin: 0; padding: 16px; background: black; color: white; overflow-x: hidden; width: 100vw; height: 100vh; }
body::-webkit-scrollbar { display: none; }
.button { padding: 2px; cursor: pointer; box-shadow: 2px 2px black; width: 64px; text-align: center; place-content: center; margin-left: 16px; height: 16px; display: none }
- .ok { position: absolute; top: 64px; right: 20px; width: 100px; background-color: grey; padding: 4px; color: black; font-size: 14px }
+ .ok { position: absolute; top: 64px; right: 20px; width: 150px; background-color: grey; padding: 4px; color: black; font-size: 14px }