├── .github └── workflows │ └── gh-pages.yml ├── .gitignore ├── LICENSE ├── README.md ├── index.html ├── package.json ├── src ├── App.jsx ├── assets │ ├── icon.png │ └── logo-on-dark-bg.png ├── index.jsx └── styles │ └── index.css └── vite.config.js /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/p2chat/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | /node_modules 3 | dist 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/p2chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/p2chat/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/p2chat/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/p2chat/HEAD/package.json -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/p2chat/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/p2chat/HEAD/src/assets/icon.png -------------------------------------------------------------------------------- /src/assets/logo-on-dark-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/p2chat/HEAD/src/assets/logo-on-dark-bg.png -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/p2chat/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/p2chat/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/p2chat/HEAD/vite.config.js --------------------------------------------------------------------------------