├── .github └── workflows │ └── deploy-vite.yml ├── .gitignore ├── README.md ├── index.html ├── main.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── style.css └── tailwind.config.js /.github/workflows/deploy-vite.yml: -------------------------------------------------------------------------------- 1 | name: Deploy on Github Pages 2 | 3 | on: 4 | # Runs on pushes targeting the default branch 5 | push: 6 | branches: ["master", "main"] 7 | # Allows you to run this workflow manually from the Actions tab 8 | workflow_dispatch: 9 | 10 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 11 | permissions: 12 | contents: read 13 | pages: write 14 | id-token: write 15 | 16 | concurrency: 17 | group: "pages" 18 | cancel-in-progress: false 19 | 20 | jobs: 21 | # Build job 22 | deploy: 23 | runs-on: ubuntu-latest 24 | environment: 25 | name: demo 26 | url: ${{ steps.deploy_to_pages.outputs.github_pages_url }} 27 | steps: 28 | - name: Checkout 29 | uses: actions/checkout@v3 30 | - name: Vite Github Pages Deployer 31 | uses: skywarth/vite-github-pages-deployer@master 32 | id: deploy_to_pages 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
What?
23 |Type anything you want. Replay it the way you typed it. No dependencies. Just copy paste a few lines of JS.
27 |Why?
31 |Because with AI and computers everywhere, automation and perfection have become boring. We lack analog feeling. Humans are cool again. Let's celebrate by adding a splash of humanity to our UI.
35 |72 |85 |73 |
74 | 75 |76 |
77 | 78 |79 | 80 |84 |81 | Copied! 82 |83 |