├── LICENSE ├── Preview ├── fullvid.gif ├── pic3.png ├── picture.png ├── setup.png └── vid.gif ├── README.md ├── reminder-backend ├── .gitignore ├── index.js ├── package-lock.json └── package.json └── reminder-frontend ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico └── index.html └── src ├── App.css ├── App.js ├── Bg.jpg ├── index.css └── index.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/LICENSE -------------------------------------------------------------------------------- /Preview/fullvid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/Preview/fullvid.gif -------------------------------------------------------------------------------- /Preview/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/Preview/pic3.png -------------------------------------------------------------------------------- /Preview/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/Preview/picture.png -------------------------------------------------------------------------------- /Preview/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/Preview/setup.png -------------------------------------------------------------------------------- /Preview/vid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/Preview/vid.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/README.md -------------------------------------------------------------------------------- /reminder-backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-backend/.gitignore -------------------------------------------------------------------------------- /reminder-backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-backend/index.js -------------------------------------------------------------------------------- /reminder-backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-backend/package-lock.json -------------------------------------------------------------------------------- /reminder-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-backend/package.json -------------------------------------------------------------------------------- /reminder-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-frontend/.gitignore -------------------------------------------------------------------------------- /reminder-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-frontend/README.md -------------------------------------------------------------------------------- /reminder-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-frontend/package-lock.json -------------------------------------------------------------------------------- /reminder-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-frontend/package.json -------------------------------------------------------------------------------- /reminder-frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-frontend/public/favicon.ico -------------------------------------------------------------------------------- /reminder-frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-frontend/public/index.html -------------------------------------------------------------------------------- /reminder-frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-frontend/src/App.css -------------------------------------------------------------------------------- /reminder-frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-frontend/src/App.js -------------------------------------------------------------------------------- /reminder-frontend/src/Bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-frontend/src/Bg.jpg -------------------------------------------------------------------------------- /reminder-frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-frontend/src/index.css -------------------------------------------------------------------------------- /reminder-frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrawe/WhatsApp-Reminder/HEAD/reminder-frontend/src/index.js --------------------------------------------------------------------------------