├── .gitignore ├── README.md ├── Taiwan Covid.csv ├── contracts ├── COVID.sol ├── Migrations.sol └── queue.sol ├── migrations ├── 1_initial_migration.js ├── 2_COVID_migration.js └── 3_queue_migration.js ├── ppt_picture ├── NML-Action - Geolocation.png ├── NML-Action - Map.png ├── NML-Action-2.png ├── NML-Action.png ├── NML-Arrive - IPFS.png ├── NML-Arrive.png ├── NML-ClientAction_call.png ├── NML-ClientAction_ipfs.png ├── NML-ClientAction_send.png ├── NML-ConfirmDelivery_call.png ├── NML-ConfirmDelivery_geolocation.png ├── NML-ConfirmDelivery_send.png ├── NML-Login.png └── NML-OrderPage_UploadOrder.png ├── react └── deliveryman │ ├── TaiwanCovid.csv │ ├── bower.json │ ├── gulpfile.js │ ├── jsconfig.json │ ├── package.json │ ├── public │ ├── index.html │ ├── manifest.json │ └── virus.ico │ └── src │ ├── api │ ├── geolocation.js │ └── map.js │ ├── assets │ ├── css │ │ └── material-kit-react.css.map │ ├── img │ │ ├── Food_NoCovid.JPG │ │ ├── apple-icon.png │ │ ├── bg.jpg │ │ ├── bg2.jpg │ │ ├── bg3.jpg │ │ ├── bg4.jpg │ │ ├── bg7.jpg │ │ ├── care2.jpg │ │ ├── delicious.jpg │ │ ├── examples │ │ │ ├── clem-onojegaw.jpg │ │ │ ├── clem-onojeghuo.jpg │ │ │ ├── cynthia-del-rio.jpg │ │ │ ├── mariya-georgieva.jpg │ │ │ ├── olu-eletu.jpg │ │ │ ├── studio-1.jpg │ │ │ ├── studio-2.jpg │ │ │ ├── studio-3.jpg │ │ │ ├── studio-4.jpg │ │ │ └── studio-5.jpg │ │ ├── faces │ │ │ ├── avatar.jpg │ │ │ ├── camp.jpg │ │ │ ├── card-profile1-square.jpg │ │ │ ├── card-profile2-square.jpg │ │ │ ├── card-profile4-square.jpg │ │ │ ├── card-profile5-square.jpg │ │ │ ├── card-profile6-square.jpg │ │ │ ├── christian.jpg │ │ │ ├── kendall.jpg │ │ │ └── marc.jpg │ │ ├── favicon.png │ │ ├── ganache.gif │ │ ├── landing-bg.jpg │ │ ├── landing.jpg │ │ ├── map.jpg │ │ ├── metamask.gif │ │ ├── profile-bg.jpg │ │ ├── profile.jpg │ │ ├── safe.jpg │ │ └── sign.jpg │ ├── jss │ │ ├── material-kit-react.js │ │ └── material-kit-react │ │ │ ├── components │ │ │ ├── badgeStyle.js │ │ │ ├── buttonStyle.js │ │ │ ├── cardBodyStyle.js │ │ │ ├── cardFooterStyle.js │ │ │ ├── cardHeaderStyle.js │ │ │ ├── cardStyle.js │ │ │ ├── customDropdownStyle.js │ │ │ ├── customInputStyle.js │ │ │ ├── customLinearProgressStyle.js │ │ │ ├── customTabsStyle.js │ │ │ ├── footerStyle.js │ │ │ ├── headerLinksStyle.js │ │ │ ├── headerStyle.js │ │ │ ├── infoStyle.js │ │ │ ├── navPillsStyle.js │ │ │ ├── paginationStyle.js │ │ │ ├── parallaxStyle.js │ │ │ ├── snackbarContentStyle.js │ │ │ └── typographyStyle.js │ │ │ ├── customCheckboxRadioSwitch.js │ │ │ ├── imagesStyles.js │ │ │ ├── modalStyle.js │ │ │ ├── popoverStyles.js │ │ │ ├── tooltipsStyle.js │ │ │ └── views │ │ │ ├── actionPage.js │ │ │ ├── arrivePage.js │ │ │ ├── components.js │ │ │ ├── componentsSections │ │ │ ├── basicsStyle.js │ │ │ ├── carouselStyle.js │ │ │ ├── completedStyle.js │ │ │ ├── downloadStyle.js │ │ │ ├── exampleStyle.js │ │ │ ├── javascriptStyles.js │ │ │ ├── loginStyle.js │ │ │ ├── navbarsStyle.js │ │ │ ├── notificationsStyles.js │ │ │ ├── pillsStyle.js │ │ │ ├── tabsStyle.js │ │ │ └── typographyStyle.js │ │ │ ├── landingPage.js │ │ │ ├── landingPageSections │ │ │ ├── productStyle.js │ │ │ ├── teamStyle.js │ │ │ └── workStyle.js │ │ │ ├── loginPage.js │ │ │ └── profilePage.js │ └── scss │ │ ├── core │ │ ├── _misc.scss │ │ ├── _mixins.scss │ │ ├── _variables.scss │ │ ├── mixins │ │ │ └── _colored-shadows.scss │ │ └── variables │ │ │ ├── _bootstrap-material-design-base.scss │ │ │ ├── _bootstrap-material-design.scss │ │ │ ├── _brand.scss │ │ │ ├── _colors-map.scss │ │ │ ├── _colors.scss │ │ │ ├── _functions.scss │ │ │ ├── _shadow.scss │ │ │ └── _variables.scss │ │ ├── material-kit-react.scss │ │ └── plugins │ │ ├── _plugin-nouislider.scss │ │ ├── _plugin-react-datetime.scss │ │ └── _plugin-react-slick.scss │ ├── components │ ├── Badge │ │ └── Badge.js │ ├── Card │ │ ├── Card.js │ │ ├── CardBody.js │ │ ├── CardFooter.js │ │ └── CardHeader.js │ ├── Clearfix │ │ └── Clearfix.js │ ├── CustomButtons │ │ └── Button.js │ ├── CustomDropdown │ │ └── CustomDropdown.js │ ├── CustomInput │ │ └── CustomInput.js │ ├── CustomLinearProgress │ │ └── CustomLinearProgress.js │ ├── CustomTabs │ │ └── CustomTabs.js │ ├── FileUpload │ │ ├── FileUpload.js │ │ ├── Message.js │ │ └── Progress.js │ ├── Footer │ │ └── Footer.js │ ├── Grid │ │ ├── GridContainer.js │ │ └── GridItem.js │ ├── Header │ │ ├── Header.js │ │ ├── HeaderLinks.js │ │ └── MyHeaderLink.js │ ├── InfoArea │ │ └── InfoArea.js │ ├── NavPills │ │ └── NavPills.js │ ├── Pagination │ │ └── Pagination.js │ ├── Parallax │ │ └── Parallax.js │ ├── Radio │ │ └── Radio.js │ ├── Snackbar │ │ └── SnackbarContent.js │ └── Typography │ │ ├── Danger.js │ │ ├── Info.js │ │ ├── Muted.js │ │ ├── Primary.js │ │ ├── Quote.js │ │ ├── Small.js │ │ ├── Success.js │ │ └── Warning.js │ ├── images │ ├── chocolate_cake.jpg │ ├── cupcake.jpg │ ├── donut.jpg │ ├── ice_cream.jpg │ ├── iconDanger.png │ ├── iconDelivery.png │ ├── iconHome.png │ ├── iconRestaurant.png │ ├── iconSafe.png │ ├── macaron.jpg │ └── milkshake.jpg │ ├── index.js │ ├── logo.svg │ ├── utils │ └── getWeb3.js │ └── views │ ├── ActionPage │ ├── ActionPage.js │ └── ActionPage_copy.js │ ├── ArrivePage │ └── ArrivePage.js │ ├── ClientActionPage │ └── ClientActionPage.js │ ├── Components │ ├── Components.js │ └── Sections │ │ ├── SectionBasics.js │ │ ├── SectionCarousel.js │ │ ├── SectionCompletedExamples.js │ │ ├── SectionDownload.js │ │ ├── SectionExamples.js │ │ ├── SectionJavascript.js │ │ ├── SectionLogin.js │ │ ├── SectionNavbars.js │ │ ├── SectionNotifications.js │ │ ├── SectionPills.js │ │ ├── SectionTabs.js │ │ └── SectionTypography.js │ ├── ConfirmDeliveryPage │ └── ConfirmDeliveryPage.js │ ├── LandingPage │ ├── LandingPage.js │ └── Sections │ │ ├── ProductSection.js │ │ ├── TeamSection.js │ │ └── WorkSection.js │ ├── LoginPage │ └── LoginPage.js │ ├── NoCovid.js │ ├── OrderPage │ ├── OrderPage.js │ └── Sections │ │ ├── ProductSection.js │ │ ├── TeamSection.js │ │ └── WorkSection.js │ ├── ProfilePage │ └── ProfilePage.js │ └── view.css ├── test └── COVID.js ├── truffle-config.js └── tutorial.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | build 4 | react/deliveryman/package.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/README.md -------------------------------------------------------------------------------- /Taiwan Covid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/Taiwan Covid.csv -------------------------------------------------------------------------------- /contracts/COVID.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/contracts/COVID.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/queue.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/contracts/queue.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_COVID_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/migrations/2_COVID_migration.js -------------------------------------------------------------------------------- /migrations/3_queue_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/migrations/3_queue_migration.js -------------------------------------------------------------------------------- /ppt_picture/NML-Action - Geolocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-Action - Geolocation.png -------------------------------------------------------------------------------- /ppt_picture/NML-Action - Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-Action - Map.png -------------------------------------------------------------------------------- /ppt_picture/NML-Action-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-Action-2.png -------------------------------------------------------------------------------- /ppt_picture/NML-Action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-Action.png -------------------------------------------------------------------------------- /ppt_picture/NML-Arrive - IPFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-Arrive - IPFS.png -------------------------------------------------------------------------------- /ppt_picture/NML-Arrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-Arrive.png -------------------------------------------------------------------------------- /ppt_picture/NML-ClientAction_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-ClientAction_call.png -------------------------------------------------------------------------------- /ppt_picture/NML-ClientAction_ipfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-ClientAction_ipfs.png -------------------------------------------------------------------------------- /ppt_picture/NML-ClientAction_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-ClientAction_send.png -------------------------------------------------------------------------------- /ppt_picture/NML-ConfirmDelivery_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-ConfirmDelivery_call.png -------------------------------------------------------------------------------- /ppt_picture/NML-ConfirmDelivery_geolocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-ConfirmDelivery_geolocation.png -------------------------------------------------------------------------------- /ppt_picture/NML-ConfirmDelivery_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-ConfirmDelivery_send.png -------------------------------------------------------------------------------- /ppt_picture/NML-Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-Login.png -------------------------------------------------------------------------------- /ppt_picture/NML-OrderPage_UploadOrder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/ppt_picture/NML-OrderPage_UploadOrder.png -------------------------------------------------------------------------------- /react/deliveryman/TaiwanCovid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/TaiwanCovid.csv -------------------------------------------------------------------------------- /react/deliveryman/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/bower.json -------------------------------------------------------------------------------- /react/deliveryman/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/gulpfile.js -------------------------------------------------------------------------------- /react/deliveryman/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/jsconfig.json -------------------------------------------------------------------------------- /react/deliveryman/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/package.json -------------------------------------------------------------------------------- /react/deliveryman/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/public/index.html -------------------------------------------------------------------------------- /react/deliveryman/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/public/manifest.json -------------------------------------------------------------------------------- /react/deliveryman/public/virus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/public/virus.ico -------------------------------------------------------------------------------- /react/deliveryman/src/api/geolocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/api/geolocation.js -------------------------------------------------------------------------------- /react/deliveryman/src/api/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/api/map.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/css/material-kit-react.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/css/material-kit-react.css.map -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/Food_NoCovid.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/Food_NoCovid.JPG -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/apple-icon.png -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/bg.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/bg2.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/bg3.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/bg4.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/bg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/bg7.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/care2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/care2.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/delicious.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/delicious.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/examples/clem-onojegaw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/examples/clem-onojegaw.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/examples/clem-onojeghuo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/examples/clem-onojeghuo.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/examples/cynthia-del-rio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/examples/cynthia-del-rio.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/examples/mariya-georgieva.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/examples/mariya-georgieva.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/examples/olu-eletu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/examples/olu-eletu.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/examples/studio-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/examples/studio-1.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/examples/studio-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/examples/studio-2.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/examples/studio-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/examples/studio-3.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/examples/studio-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/examples/studio-4.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/examples/studio-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/examples/studio-5.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/faces/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/faces/avatar.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/faces/camp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/faces/camp.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/faces/card-profile1-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/faces/card-profile1-square.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/faces/card-profile2-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/faces/card-profile2-square.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/faces/card-profile4-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/faces/card-profile4-square.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/faces/card-profile5-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/faces/card-profile5-square.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/faces/card-profile6-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/faces/card-profile6-square.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/faces/christian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/faces/christian.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/faces/kendall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/faces/kendall.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/faces/marc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/faces/marc.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/favicon.png -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/ganache.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/ganache.gif -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/landing-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/landing-bg.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/landing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/landing.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/map.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/metamask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/metamask.gif -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/profile-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/profile-bg.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/profile.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/safe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/safe.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/img/sign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/img/sign.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/badgeStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/badgeStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/buttonStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/buttonStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/cardBodyStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/cardBodyStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/cardFooterStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/cardFooterStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/cardHeaderStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/cardHeaderStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/cardStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/cardStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/customDropdownStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/customDropdownStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/customInputStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/customInputStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/customLinearProgressStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/customLinearProgressStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/customTabsStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/customTabsStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/footerStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/footerStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/headerLinksStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/headerLinksStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/headerStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/headerStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/infoStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/infoStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/navPillsStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/navPillsStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/paginationStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/paginationStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/parallaxStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/parallaxStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/snackbarContentStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/snackbarContentStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/components/typographyStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/components/typographyStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/customCheckboxRadioSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/customCheckboxRadioSwitch.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/imagesStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/imagesStyles.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/modalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/modalStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/popoverStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/popoverStyles.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/tooltipsStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/tooltipsStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/actionPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/actionPage.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/arrivePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/arrivePage.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/components.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/basicsStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/basicsStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/carouselStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/carouselStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/completedStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/completedStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/downloadStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/downloadStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/exampleStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/exampleStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/javascriptStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/javascriptStyles.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/loginStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/loginStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/navbarsStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/navbarsStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/notificationsStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/notificationsStyles.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/pillsStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/pillsStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/tabsStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/tabsStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/typographyStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/componentsSections/typographyStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/landingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/landingPage.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/landingPageSections/productStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/landingPageSections/productStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/landingPageSections/teamStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/landingPageSections/teamStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/landingPageSections/workStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/landingPageSections/workStyle.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/loginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/loginPage.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/jss/material-kit-react/views/profilePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/jss/material-kit-react/views/profilePage.js -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/core/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/core/_misc.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/core/_mixins.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/colored-shadows"; 2 | -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/core/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/core/_variables.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/core/mixins/_colored-shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/core/mixins/_colored-shadows.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/core/variables/_bootstrap-material-design-base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/core/variables/_bootstrap-material-design-base.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/core/variables/_bootstrap-material-design.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/core/variables/_bootstrap-material-design.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/core/variables/_brand.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/core/variables/_brand.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/core/variables/_colors-map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/core/variables/_colors-map.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/core/variables/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/core/variables/_colors.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/core/variables/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/core/variables/_functions.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/core/variables/_shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/core/variables/_shadow.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/core/variables/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/core/variables/_variables.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/material-kit-react.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/material-kit-react.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/plugins/_plugin-nouislider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/plugins/_plugin-nouislider.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/plugins/_plugin-react-datetime.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/plugins/_plugin-react-datetime.scss -------------------------------------------------------------------------------- /react/deliveryman/src/assets/scss/plugins/_plugin-react-slick.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/assets/scss/plugins/_plugin-react-slick.scss -------------------------------------------------------------------------------- /react/deliveryman/src/components/Badge/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Badge/Badge.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Card/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Card/Card.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Card/CardBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Card/CardBody.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Card/CardFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Card/CardFooter.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Card/CardHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Card/CardHeader.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Clearfix/Clearfix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Clearfix/Clearfix.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/CustomButtons/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/CustomButtons/Button.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/CustomDropdown/CustomDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/CustomDropdown/CustomDropdown.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/CustomInput/CustomInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/CustomInput/CustomInput.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/CustomLinearProgress/CustomLinearProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/CustomLinearProgress/CustomLinearProgress.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/CustomTabs/CustomTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/CustomTabs/CustomTabs.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/FileUpload/FileUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/FileUpload/FileUpload.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/FileUpload/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/FileUpload/Message.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/FileUpload/Progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/FileUpload/Progress.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Footer/Footer.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Grid/GridContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Grid/GridContainer.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Grid/GridItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Grid/GridItem.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Header/Header.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Header/HeaderLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Header/HeaderLinks.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Header/MyHeaderLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Header/MyHeaderLink.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/InfoArea/InfoArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/InfoArea/InfoArea.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/NavPills/NavPills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/NavPills/NavPills.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Pagination/Pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Pagination/Pagination.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Parallax/Parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Parallax/Parallax.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Radio/Radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Radio/Radio.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Snackbar/SnackbarContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Snackbar/SnackbarContent.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Typography/Danger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Typography/Danger.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Typography/Info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Typography/Info.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Typography/Muted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Typography/Muted.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Typography/Primary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Typography/Primary.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Typography/Quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Typography/Quote.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Typography/Small.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Typography/Small.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Typography/Success.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Typography/Success.js -------------------------------------------------------------------------------- /react/deliveryman/src/components/Typography/Warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/components/Typography/Warning.js -------------------------------------------------------------------------------- /react/deliveryman/src/images/chocolate_cake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/images/chocolate_cake.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/images/cupcake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/images/cupcake.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/images/donut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/images/donut.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/images/ice_cream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/images/ice_cream.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/images/iconDanger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/images/iconDanger.png -------------------------------------------------------------------------------- /react/deliveryman/src/images/iconDelivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/images/iconDelivery.png -------------------------------------------------------------------------------- /react/deliveryman/src/images/iconHome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/images/iconHome.png -------------------------------------------------------------------------------- /react/deliveryman/src/images/iconRestaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/images/iconRestaurant.png -------------------------------------------------------------------------------- /react/deliveryman/src/images/iconSafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/images/iconSafe.png -------------------------------------------------------------------------------- /react/deliveryman/src/images/macaron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/images/macaron.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/images/milkshake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/images/milkshake.jpg -------------------------------------------------------------------------------- /react/deliveryman/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/index.js -------------------------------------------------------------------------------- /react/deliveryman/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/logo.svg -------------------------------------------------------------------------------- /react/deliveryman/src/utils/getWeb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/utils/getWeb3.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/ActionPage/ActionPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/ActionPage/ActionPage.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/ActionPage/ActionPage_copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/ActionPage/ActionPage_copy.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/ArrivePage/ArrivePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/ArrivePage/ArrivePage.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/ClientActionPage/ClientActionPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/ClientActionPage/ClientActionPage.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/Components/Components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/Components/Components.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/Components/Sections/SectionBasics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/Components/Sections/SectionBasics.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/Components/Sections/SectionCarousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/Components/Sections/SectionCarousel.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/Components/Sections/SectionCompletedExamples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/Components/Sections/SectionCompletedExamples.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/Components/Sections/SectionDownload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/Components/Sections/SectionDownload.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/Components/Sections/SectionExamples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/Components/Sections/SectionExamples.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/Components/Sections/SectionJavascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/Components/Sections/SectionJavascript.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/Components/Sections/SectionLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/Components/Sections/SectionLogin.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/Components/Sections/SectionNavbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/Components/Sections/SectionNavbars.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/Components/Sections/SectionNotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/Components/Sections/SectionNotifications.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/Components/Sections/SectionPills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/Components/Sections/SectionPills.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/Components/Sections/SectionTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/Components/Sections/SectionTabs.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/Components/Sections/SectionTypography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/Components/Sections/SectionTypography.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/ConfirmDeliveryPage/ConfirmDeliveryPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/ConfirmDeliveryPage/ConfirmDeliveryPage.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/LandingPage/LandingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/LandingPage/LandingPage.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/LandingPage/Sections/ProductSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/LandingPage/Sections/ProductSection.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/LandingPage/Sections/TeamSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/LandingPage/Sections/TeamSection.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/LandingPage/Sections/WorkSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/LandingPage/Sections/WorkSection.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/LoginPage/LoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/LoginPage/LoginPage.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/NoCovid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/NoCovid.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/OrderPage/OrderPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/OrderPage/OrderPage.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/OrderPage/Sections/ProductSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/OrderPage/Sections/ProductSection.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/OrderPage/Sections/TeamSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/OrderPage/Sections/TeamSection.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/OrderPage/Sections/WorkSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/OrderPage/Sections/WorkSection.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/ProfilePage/ProfilePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/ProfilePage/ProfilePage.js -------------------------------------------------------------------------------- /react/deliveryman/src/views/view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/react/deliveryman/src/views/view.css -------------------------------------------------------------------------------- /test/COVID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/test/COVID.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/truffle-config.js -------------------------------------------------------------------------------- /tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyHsieh0806/No-Covid/HEAD/tutorial.md --------------------------------------------------------------------------------