├── .gitignore ├── README.md ├── package.json ├── public ├── images │ ├── breakfast.jpg │ ├── cooked-food.png │ ├── dinner.jpg │ ├── hunger.jpg │ ├── illus2.png │ ├── logo.jpg │ ├── lunch.jpg │ ├── ngo.png │ ├── packed-food.png │ └── raw-food.png └── index.html └── src ├── App.css ├── App.js ├── components ├── BottomNavbar │ ├── BottomNavbar.jsx │ ├── bottomNavbar.module.css │ └── index.js ├── Button.jsx ├── DonateFoodNavbar │ ├── DonateFoodNavbar.jsx │ └── index.js ├── NGOCard │ ├── NGOCard.jsx │ ├── index.js │ └── ngoCard.module.css └── container.module.css ├── index.css ├── index.js └── pages ├── AllNGOS ├── AllNGOS.jsx └── index.js ├── CategorySelection ├── CategorySelection.jsx ├── categorySelection.module.css └── index.js ├── ChooseYourRole ├── ChooseRole.jsx ├── chooseRole.module.css └── index.js ├── ConfirmFoodDetails ├── ConfirmFoodDetails.jsx ├── confirmFoodDetails.module.css └── index.js ├── DeliverSelection ├── DeliverSelection.jsx ├── deliverSelection.module.css └── index.js ├── DonationSelection ├── DonationSelection.jsx ├── donationSelection.module.css └── index.js ├── FirstPage.jsx ├── FoodDetails ├── FoodDetails.jsx ├── foodDetails.module.css └── index.js ├── HomePage ├── HomePage.jsx ├── homePage.module.css └── index.js ├── Inroductry ├── Arrows.js ├── Card.css ├── Card.jsx ├── Dots.js ├── Slider.css ├── Slider.js ├── SliderContent.jsx ├── imageSlider.js └── slideImage.css ├── NGOPage ├── NGOPage.jsx ├── index.js └── ngoPage.module.css ├── Profile ├── Profile.jsx ├── index.js └── profile.module.css ├── Role └── Roles.jsx └── Signup ├── Signup.jsx ├── index.js └── signup.module.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/package.json -------------------------------------------------------------------------------- /public/images/breakfast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/public/images/breakfast.jpg -------------------------------------------------------------------------------- /public/images/cooked-food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/public/images/cooked-food.png -------------------------------------------------------------------------------- /public/images/dinner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/public/images/dinner.jpg -------------------------------------------------------------------------------- /public/images/hunger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/public/images/hunger.jpg -------------------------------------------------------------------------------- /public/images/illus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/public/images/illus2.png -------------------------------------------------------------------------------- /public/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/public/images/logo.jpg -------------------------------------------------------------------------------- /public/images/lunch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/public/images/lunch.jpg -------------------------------------------------------------------------------- /public/images/ngo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/public/images/ngo.png -------------------------------------------------------------------------------- /public/images/packed-food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/public/images/packed-food.png -------------------------------------------------------------------------------- /public/images/raw-food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/public/images/raw-food.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/BottomNavbar/BottomNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/components/BottomNavbar/BottomNavbar.jsx -------------------------------------------------------------------------------- /src/components/BottomNavbar/bottomNavbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/components/BottomNavbar/bottomNavbar.module.css -------------------------------------------------------------------------------- /src/components/BottomNavbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/components/BottomNavbar/index.js -------------------------------------------------------------------------------- /src/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/components/Button.jsx -------------------------------------------------------------------------------- /src/components/DonateFoodNavbar/DonateFoodNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/components/DonateFoodNavbar/DonateFoodNavbar.jsx -------------------------------------------------------------------------------- /src/components/DonateFoodNavbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/components/DonateFoodNavbar/index.js -------------------------------------------------------------------------------- /src/components/NGOCard/NGOCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/components/NGOCard/NGOCard.jsx -------------------------------------------------------------------------------- /src/components/NGOCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/components/NGOCard/index.js -------------------------------------------------------------------------------- /src/components/NGOCard/ngoCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/components/NGOCard/ngoCard.module.css -------------------------------------------------------------------------------- /src/components/container.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/components/container.module.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/AllNGOS/AllNGOS.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/AllNGOS/AllNGOS.jsx -------------------------------------------------------------------------------- /src/pages/AllNGOS/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/AllNGOS/index.js -------------------------------------------------------------------------------- /src/pages/CategorySelection/CategorySelection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/CategorySelection/CategorySelection.jsx -------------------------------------------------------------------------------- /src/pages/CategorySelection/categorySelection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/CategorySelection/categorySelection.module.css -------------------------------------------------------------------------------- /src/pages/CategorySelection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/CategorySelection/index.js -------------------------------------------------------------------------------- /src/pages/ChooseYourRole/ChooseRole.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/ChooseYourRole/ChooseRole.jsx -------------------------------------------------------------------------------- /src/pages/ChooseYourRole/chooseRole.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/ChooseYourRole/chooseRole.module.css -------------------------------------------------------------------------------- /src/pages/ChooseYourRole/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/ChooseYourRole/index.js -------------------------------------------------------------------------------- /src/pages/ConfirmFoodDetails/ConfirmFoodDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/ConfirmFoodDetails/ConfirmFoodDetails.jsx -------------------------------------------------------------------------------- /src/pages/ConfirmFoodDetails/confirmFoodDetails.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/ConfirmFoodDetails/confirmFoodDetails.module.css -------------------------------------------------------------------------------- /src/pages/ConfirmFoodDetails/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/ConfirmFoodDetails/index.js -------------------------------------------------------------------------------- /src/pages/DeliverSelection/DeliverSelection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/DeliverSelection/DeliverSelection.jsx -------------------------------------------------------------------------------- /src/pages/DeliverSelection/deliverSelection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/DeliverSelection/deliverSelection.module.css -------------------------------------------------------------------------------- /src/pages/DeliverSelection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/DeliverSelection/index.js -------------------------------------------------------------------------------- /src/pages/DonationSelection/DonationSelection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/DonationSelection/DonationSelection.jsx -------------------------------------------------------------------------------- /src/pages/DonationSelection/donationSelection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/DonationSelection/donationSelection.module.css -------------------------------------------------------------------------------- /src/pages/DonationSelection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/DonationSelection/index.js -------------------------------------------------------------------------------- /src/pages/FirstPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/FirstPage.jsx -------------------------------------------------------------------------------- /src/pages/FoodDetails/FoodDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/FoodDetails/FoodDetails.jsx -------------------------------------------------------------------------------- /src/pages/FoodDetails/foodDetails.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/FoodDetails/foodDetails.module.css -------------------------------------------------------------------------------- /src/pages/FoodDetails/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/FoodDetails/index.js -------------------------------------------------------------------------------- /src/pages/HomePage/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/HomePage/HomePage.jsx -------------------------------------------------------------------------------- /src/pages/HomePage/homePage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/HomePage/homePage.module.css -------------------------------------------------------------------------------- /src/pages/HomePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/HomePage/index.js -------------------------------------------------------------------------------- /src/pages/Inroductry/Arrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Inroductry/Arrows.js -------------------------------------------------------------------------------- /src/pages/Inroductry/Card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Inroductry/Card.css -------------------------------------------------------------------------------- /src/pages/Inroductry/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Inroductry/Card.jsx -------------------------------------------------------------------------------- /src/pages/Inroductry/Dots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Inroductry/Dots.js -------------------------------------------------------------------------------- /src/pages/Inroductry/Slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Inroductry/Slider.css -------------------------------------------------------------------------------- /src/pages/Inroductry/Slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Inroductry/Slider.js -------------------------------------------------------------------------------- /src/pages/Inroductry/SliderContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Inroductry/SliderContent.jsx -------------------------------------------------------------------------------- /src/pages/Inroductry/imageSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Inroductry/imageSlider.js -------------------------------------------------------------------------------- /src/pages/Inroductry/slideImage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Inroductry/slideImage.css -------------------------------------------------------------------------------- /src/pages/NGOPage/NGOPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/NGOPage/NGOPage.jsx -------------------------------------------------------------------------------- /src/pages/NGOPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/NGOPage/index.js -------------------------------------------------------------------------------- /src/pages/NGOPage/ngoPage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/NGOPage/ngoPage.module.css -------------------------------------------------------------------------------- /src/pages/Profile/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Profile/Profile.jsx -------------------------------------------------------------------------------- /src/pages/Profile/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/Profile/profile.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Profile/profile.module.css -------------------------------------------------------------------------------- /src/pages/Role/Roles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Role/Roles.jsx -------------------------------------------------------------------------------- /src/pages/Signup/Signup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Signup/Signup.jsx -------------------------------------------------------------------------------- /src/pages/Signup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Signup/index.js -------------------------------------------------------------------------------- /src/pages/Signup/signup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mansisindhu/seva-the-food-sharing-app/HEAD/src/pages/Signup/signup.module.css --------------------------------------------------------------------------------