├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── src ├── App.jsx ├── components │ ├── Body.jsx │ ├── Chat.jsx │ ├── Connections.jsx │ ├── EditProfile.jsx │ ├── Feed.jsx │ ├── Footer.jsx │ ├── Login.jsx │ ├── NavBar.jsx │ ├── Premium.jsx │ ├── Profile.jsx │ ├── Requests.jsx │ └── UserCard.jsx ├── index.css ├── main.jsx └── utils │ ├── appStore.js │ ├── conectionSlice.js │ ├── constants.js │ ├── feedSlice.js │ ├── requestSlice.js │ ├── socket.js │ └── userSlice.js ├── tailwind.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/Body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/components/Body.jsx -------------------------------------------------------------------------------- /src/components/Chat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/components/Chat.jsx -------------------------------------------------------------------------------- /src/components/Connections.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/components/Connections.jsx -------------------------------------------------------------------------------- /src/components/EditProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/components/EditProfile.jsx -------------------------------------------------------------------------------- /src/components/Feed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/components/Feed.jsx -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/components/Login.jsx -------------------------------------------------------------------------------- /src/components/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/components/NavBar.jsx -------------------------------------------------------------------------------- /src/components/Premium.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/components/Premium.jsx -------------------------------------------------------------------------------- /src/components/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/components/Profile.jsx -------------------------------------------------------------------------------- /src/components/Requests.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/components/Requests.jsx -------------------------------------------------------------------------------- /src/components/UserCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/components/UserCard.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/utils/appStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/utils/appStore.js -------------------------------------------------------------------------------- /src/utils/conectionSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/utils/conectionSlice.js -------------------------------------------------------------------------------- /src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/utils/constants.js -------------------------------------------------------------------------------- /src/utils/feedSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/utils/feedSlice.js -------------------------------------------------------------------------------- /src/utils/requestSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/utils/requestSlice.js -------------------------------------------------------------------------------- /src/utils/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/utils/socket.js -------------------------------------------------------------------------------- /src/utils/userSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/src/utils/userSlice.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaymarch7/devTinder-web/HEAD/vite.config.js --------------------------------------------------------------------------------