├── .editorconfig ├── .gitignore ├── README.md ├── package.json ├── public ├── index.html └── logo.png ├── pull_request_template.md ├── server.json └── src ├── App.js ├── Routes.js ├── ant_overrides.scss ├── assets ├── banner.png ├── both.png ├── events-producer.png ├── home │ ├── banner-1.jpg │ ├── bootcamps-2.jpg │ ├── events.jpg │ ├── online.jpg │ ├── people-1.jpg │ ├── people.jpg │ ├── student-1.jpg │ ├── woman.jpg │ └── young.jpg ├── logo-mobile.png ├── logo.png └── speaker.png ├── components ├── Header │ └── index.js ├── Menu │ ├── HorizontalMenu.js │ ├── VerticalMenu.js │ ├── index.js │ └── style.scss └── Table │ ├── index.js │ └── style.scss ├── index.js ├── index.scss ├── pages ├── About │ └── index.js ├── Events │ ├── Event.js │ ├── EventForm.js │ ├── EventsList.js │ ├── PartnersForm.js │ ├── event-register.js │ ├── event-register.test.js │ ├── event.scss │ └── events-list.scss ├── Home │ ├── CardEvent.js │ ├── Home.js │ └── style.scss ├── Lectures │ ├── CopyLecture.js │ ├── Lecture.js │ ├── LectureForm.js │ ├── LecturesCSV.js │ ├── LecturesList.js │ └── lectures-list.scss ├── Login │ ├── FBLogin.js │ ├── GglLogin.js │ ├── MailLogin.js │ ├── RoleComponent.js │ ├── index.js │ └── style.scss ├── Privacidade │ └── index.js ├── Profile │ ├── MyProfile.js │ ├── ProfileDescription.js │ ├── ProfileForm.js │ └── style.scss ├── Submissions │ ├── SubmissionInfo.js │ ├── SubmissionsPending.js │ ├── SubmissionsTable.js │ ├── index.js │ ├── style.scss │ └── submissionDetails.js └── Termos │ └── index.js ├── serviceWorker.js ├── setupTests.js └── utils ├── Email ├── Back.js ├── Email.js ├── app.js └── server.js ├── convertToCSV.js ├── copyToCliboard.js ├── currentDate.js ├── environment.js └── getUserIsOwner .js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/public/logo.png -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/server.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/Routes.js -------------------------------------------------------------------------------- /src/ant_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/ant_overrides.scss -------------------------------------------------------------------------------- /src/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/banner.png -------------------------------------------------------------------------------- /src/assets/both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/both.png -------------------------------------------------------------------------------- /src/assets/events-producer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/events-producer.png -------------------------------------------------------------------------------- /src/assets/home/banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/home/banner-1.jpg -------------------------------------------------------------------------------- /src/assets/home/bootcamps-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/home/bootcamps-2.jpg -------------------------------------------------------------------------------- /src/assets/home/events.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/home/events.jpg -------------------------------------------------------------------------------- /src/assets/home/online.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/home/online.jpg -------------------------------------------------------------------------------- /src/assets/home/people-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/home/people-1.jpg -------------------------------------------------------------------------------- /src/assets/home/people.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/home/people.jpg -------------------------------------------------------------------------------- /src/assets/home/student-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/home/student-1.jpg -------------------------------------------------------------------------------- /src/assets/home/woman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/home/woman.jpg -------------------------------------------------------------------------------- /src/assets/home/young.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/home/young.jpg -------------------------------------------------------------------------------- /src/assets/logo-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/logo-mobile.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/assets/speaker.png -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/Menu/HorizontalMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/components/Menu/HorizontalMenu.js -------------------------------------------------------------------------------- /src/components/Menu/VerticalMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/components/Menu/VerticalMenu.js -------------------------------------------------------------------------------- /src/components/Menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/components/Menu/index.js -------------------------------------------------------------------------------- /src/components/Menu/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/components/Menu/style.scss -------------------------------------------------------------------------------- /src/components/Table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/components/Table/index.js -------------------------------------------------------------------------------- /src/components/Table/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/components/Table/style.scss -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/pages/About/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/About/index.js -------------------------------------------------------------------------------- /src/pages/Events/Event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Events/Event.js -------------------------------------------------------------------------------- /src/pages/Events/EventForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Events/EventForm.js -------------------------------------------------------------------------------- /src/pages/Events/EventsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Events/EventsList.js -------------------------------------------------------------------------------- /src/pages/Events/PartnersForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Events/PartnersForm.js -------------------------------------------------------------------------------- /src/pages/Events/event-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Events/event-register.js -------------------------------------------------------------------------------- /src/pages/Events/event-register.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Events/event-register.test.js -------------------------------------------------------------------------------- /src/pages/Events/event.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Events/event.scss -------------------------------------------------------------------------------- /src/pages/Events/events-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Events/events-list.scss -------------------------------------------------------------------------------- /src/pages/Home/CardEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Home/CardEvent.js -------------------------------------------------------------------------------- /src/pages/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Home/Home.js -------------------------------------------------------------------------------- /src/pages/Home/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Home/style.scss -------------------------------------------------------------------------------- /src/pages/Lectures/CopyLecture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Lectures/CopyLecture.js -------------------------------------------------------------------------------- /src/pages/Lectures/Lecture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Lectures/Lecture.js -------------------------------------------------------------------------------- /src/pages/Lectures/LectureForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Lectures/LectureForm.js -------------------------------------------------------------------------------- /src/pages/Lectures/LecturesCSV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Lectures/LecturesCSV.js -------------------------------------------------------------------------------- /src/pages/Lectures/LecturesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Lectures/LecturesList.js -------------------------------------------------------------------------------- /src/pages/Lectures/lectures-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Lectures/lectures-list.scss -------------------------------------------------------------------------------- /src/pages/Login/FBLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Login/FBLogin.js -------------------------------------------------------------------------------- /src/pages/Login/GglLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Login/GglLogin.js -------------------------------------------------------------------------------- /src/pages/Login/MailLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Login/MailLogin.js -------------------------------------------------------------------------------- /src/pages/Login/RoleComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Login/RoleComponent.js -------------------------------------------------------------------------------- /src/pages/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Login/index.js -------------------------------------------------------------------------------- /src/pages/Login/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Login/style.scss -------------------------------------------------------------------------------- /src/pages/Privacidade/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Privacidade/index.js -------------------------------------------------------------------------------- /src/pages/Profile/MyProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Profile/MyProfile.js -------------------------------------------------------------------------------- /src/pages/Profile/ProfileDescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Profile/ProfileDescription.js -------------------------------------------------------------------------------- /src/pages/Profile/ProfileForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Profile/ProfileForm.js -------------------------------------------------------------------------------- /src/pages/Profile/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Profile/style.scss -------------------------------------------------------------------------------- /src/pages/Submissions/SubmissionInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Submissions/SubmissionInfo.js -------------------------------------------------------------------------------- /src/pages/Submissions/SubmissionsPending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Submissions/SubmissionsPending.js -------------------------------------------------------------------------------- /src/pages/Submissions/SubmissionsTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Submissions/SubmissionsTable.js -------------------------------------------------------------------------------- /src/pages/Submissions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Submissions/index.js -------------------------------------------------------------------------------- /src/pages/Submissions/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Submissions/style.scss -------------------------------------------------------------------------------- /src/pages/Submissions/submissionDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Submissions/submissionDetails.js -------------------------------------------------------------------------------- /src/pages/Termos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/pages/Termos/index.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/utils/Email/Back.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/utils/Email/Back.js -------------------------------------------------------------------------------- /src/utils/Email/Email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/utils/Email/Email.js -------------------------------------------------------------------------------- /src/utils/Email/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/utils/Email/app.js -------------------------------------------------------------------------------- /src/utils/Email/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/utils/Email/server.js -------------------------------------------------------------------------------- /src/utils/convertToCSV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/utils/convertToCSV.js -------------------------------------------------------------------------------- /src/utils/copyToCliboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/utils/copyToCliboard.js -------------------------------------------------------------------------------- /src/utils/currentDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/utils/currentDate.js -------------------------------------------------------------------------------- /src/utils/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/utils/environment.js -------------------------------------------------------------------------------- /src/utils/getUserIsOwner .js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/React-Bootcamp-WoMarkersCode/call-of-papers/HEAD/src/utils/getUserIsOwner .js --------------------------------------------------------------------------------