├── .deepsource.toml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── PULL_REQUEST_TEMPLATE.md ├── auto_assign.yml ├── frontend_build.yaml ├── stale.yml └── workflows │ ├── assign.yml │ ├── assigner.yml │ ├── ci.yml │ ├── greetings.yml │ ├── stale.yml │ └── test.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── client ├── .dockerignore ├── .gitignore ├── .prettierrc.json ├── Dockerfile ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── SpeakEd.js │ ├── SpeakEdData.js │ ├── assets │ ├── 111063716-504ca480-84d6-11eb-8438-53ed7c087547-1@2x.svg │ ├── 111063716-504ca480-84d6-11eb-8438-53ed7c087547-2@2x.svg │ ├── aboutus.svg │ ├── google.svg │ ├── image-10-1@2x.svg │ ├── image-10@2x.svg │ ├── rectangle-284-1@1x.svg │ └── speakerone.svg │ ├── components │ ├── AboutUs │ │ ├── AboutUs.css │ │ └── AboutUs.js │ ├── Button │ │ ├── ButtonOne.css │ │ └── ButtonOne.js │ ├── InfoSection │ │ ├── info.js │ │ └── infoele.js │ ├── Navbar │ │ ├── Header.css │ │ ├── Header.js │ │ ├── Navbar.js │ │ └── logo.jpg │ ├── Organizations │ │ ├── Organizations.css │ │ └── Organizations.js │ ├── Speakers │ │ ├── Speakers.css │ │ └── Speakers.js │ ├── SpeakersOpinion │ │ ├── SpeakersOpinion.css │ │ └── SpeakersOpinion.js │ ├── Welcome │ │ ├── Welcome.css │ │ └── Welcome.js │ ├── displayLottie │ │ └── DisplayLottie.js │ ├── footer │ │ ├── index.js │ │ └── styles │ │ │ └── footer.js │ └── icons │ │ └── SocialMedia.js │ ├── containers │ ├── footer.js │ └── loading │ │ ├── Loading.css │ │ └── Loading.js │ ├── index.css │ ├── index.js │ ├── reportWebVitals.js │ └── setupTests.js ├── design ├── error-404-page │ ├── error-404-page.png │ └── error-404-page.xd ├── landing-page-design │ └── speaked-landing-page.fig ├── logo-design │ ├── PNG │ │ └── speaked-logo.png │ └── SVG │ │ └── speaked-logo.svg └── splash-screen │ ├── load-screen-1.png │ ├── load-screen-2.png │ └── splash-loading-screen.xd ├── docker-compose.yml ├── docs └── DATABASE-DESIGN.md └── server ├── Dockerfile ├── README.md ├── app.py ├── conftest.py └── requirements.txt /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/frontend_build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.github/frontend_build.yaml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.github/workflows/assign.yml -------------------------------------------------------------------------------- /.github/workflows/assigner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.github/workflows/assigner.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/README.md -------------------------------------------------------------------------------- /client/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/.dockerignore -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/.prettierrc.json -------------------------------------------------------------------------------- /client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/Dockerfile -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/SpeakEd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/SpeakEd.js -------------------------------------------------------------------------------- /client/src/SpeakEdData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/SpeakEdData.js -------------------------------------------------------------------------------- /client/src/assets/111063716-504ca480-84d6-11eb-8438-53ed7c087547-1@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/assets/111063716-504ca480-84d6-11eb-8438-53ed7c087547-1@2x.svg -------------------------------------------------------------------------------- /client/src/assets/111063716-504ca480-84d6-11eb-8438-53ed7c087547-2@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/assets/111063716-504ca480-84d6-11eb-8438-53ed7c087547-2@2x.svg -------------------------------------------------------------------------------- /client/src/assets/aboutus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/assets/aboutus.svg -------------------------------------------------------------------------------- /client/src/assets/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/assets/google.svg -------------------------------------------------------------------------------- /client/src/assets/image-10-1@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/assets/image-10-1@2x.svg -------------------------------------------------------------------------------- /client/src/assets/image-10@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/assets/image-10@2x.svg -------------------------------------------------------------------------------- /client/src/assets/rectangle-284-1@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/assets/rectangle-284-1@1x.svg -------------------------------------------------------------------------------- /client/src/assets/speakerone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/assets/speakerone.svg -------------------------------------------------------------------------------- /client/src/components/AboutUs/AboutUs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/AboutUs/AboutUs.css -------------------------------------------------------------------------------- /client/src/components/AboutUs/AboutUs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/AboutUs/AboutUs.js -------------------------------------------------------------------------------- /client/src/components/Button/ButtonOne.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/Button/ButtonOne.css -------------------------------------------------------------------------------- /client/src/components/Button/ButtonOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/Button/ButtonOne.js -------------------------------------------------------------------------------- /client/src/components/InfoSection/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/InfoSection/info.js -------------------------------------------------------------------------------- /client/src/components/InfoSection/infoele.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/InfoSection/infoele.js -------------------------------------------------------------------------------- /client/src/components/Navbar/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/Navbar/Header.css -------------------------------------------------------------------------------- /client/src/components/Navbar/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/Navbar/Header.js -------------------------------------------------------------------------------- /client/src/components/Navbar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/Navbar/Navbar.js -------------------------------------------------------------------------------- /client/src/components/Navbar/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/Navbar/logo.jpg -------------------------------------------------------------------------------- /client/src/components/Organizations/Organizations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/Organizations/Organizations.css -------------------------------------------------------------------------------- /client/src/components/Organizations/Organizations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/Organizations/Organizations.js -------------------------------------------------------------------------------- /client/src/components/Speakers/Speakers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/Speakers/Speakers.css -------------------------------------------------------------------------------- /client/src/components/Speakers/Speakers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/Speakers/Speakers.js -------------------------------------------------------------------------------- /client/src/components/SpeakersOpinion/SpeakersOpinion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/SpeakersOpinion/SpeakersOpinion.css -------------------------------------------------------------------------------- /client/src/components/SpeakersOpinion/SpeakersOpinion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/SpeakersOpinion/SpeakersOpinion.js -------------------------------------------------------------------------------- /client/src/components/Welcome/Welcome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/Welcome/Welcome.css -------------------------------------------------------------------------------- /client/src/components/Welcome/Welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/Welcome/Welcome.js -------------------------------------------------------------------------------- /client/src/components/displayLottie/DisplayLottie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/displayLottie/DisplayLottie.js -------------------------------------------------------------------------------- /client/src/components/footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/footer/index.js -------------------------------------------------------------------------------- /client/src/components/footer/styles/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/footer/styles/footer.js -------------------------------------------------------------------------------- /client/src/components/icons/SocialMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/components/icons/SocialMedia.js -------------------------------------------------------------------------------- /client/src/containers/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/containers/footer.js -------------------------------------------------------------------------------- /client/src/containers/loading/Loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/containers/loading/Loading.css -------------------------------------------------------------------------------- /client/src/containers/loading/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/containers/loading/Loading.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /design/error-404-page/error-404-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/design/error-404-page/error-404-page.png -------------------------------------------------------------------------------- /design/error-404-page/error-404-page.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/design/error-404-page/error-404-page.xd -------------------------------------------------------------------------------- /design/landing-page-design/speaked-landing-page.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/design/landing-page-design/speaked-landing-page.fig -------------------------------------------------------------------------------- /design/logo-design/PNG/speaked-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/design/logo-design/PNG/speaked-logo.png -------------------------------------------------------------------------------- /design/logo-design/SVG/speaked-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/design/logo-design/SVG/speaked-logo.svg -------------------------------------------------------------------------------- /design/splash-screen/load-screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/design/splash-screen/load-screen-1.png -------------------------------------------------------------------------------- /design/splash-screen/load-screen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/design/splash-screen/load-screen-2.png -------------------------------------------------------------------------------- /design/splash-screen/splash-loading-screen.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/design/splash-screen/splash-loading-screen.xd -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/DATABASE-DESIGN.md: -------------------------------------------------------------------------------- 1 | ## Database Schema 2 | 3 | ![image](https://i.imgur.com/PKx6hhY.png) 4 | -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/server/README.md -------------------------------------------------------------------------------- /server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/server/app.py -------------------------------------------------------------------------------- /server/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/server/conftest.py -------------------------------------------------------------------------------- /server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshCasper/SpeakEd/HEAD/server/requirements.txt --------------------------------------------------------------------------------