**docs(readme): add live demo link and update install script in deploy workflow**

### Changes:
- **README.md**: Added a "Live Demo" section with a direct link to the interactive GitHub Pages demo.
- **deploy-demo.yml**: Modified dependency installation step to use `npm install --legacy-peer-deps` for compatibility.

### Purpose:
Improved documentation by providing direct access to the live demo for better user engagement. Updated the deploy workflow to ensure successful dependency resolution during the setup process.
This commit is contained in:
David Snelling 2025-06-20 14:40:40 -07:00
parent 02dd5a20bc
commit 9db89017ab
2 changed files with 6 additions and 1 deletions

View file

@ -19,7 +19,8 @@ jobs:
cache: 'npm'
- name: Install dependencies 📦
run: npm ci
run: npm install --legacy-peer-deps
- name: Build project 🏗️
run: |