├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── robots.txt └── style.css └── src ├── App.css ├── App.js ├── Components ├── Login.css └── Login.js ├── Pages ├── Home.css └── Home.js ├── index.css └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/public/style.css -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Components/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/src/Components/Login.css -------------------------------------------------------------------------------- /src/Components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/src/Components/Login.js -------------------------------------------------------------------------------- /src/Pages/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/src/Pages/Home.css -------------------------------------------------------------------------------- /src/Pages/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/src/Pages/Home.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/The-Talkers/HEAD/src/index.js --------------------------------------------------------------------------------