├── .all-contributorsrc ├── .firebase └── hosting.YnVpbGQ.cache ├── .firebaserc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── assigner.yml ├── config.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── Auto_Reply_On_Merge.yml │ ├── auto_assign_reviewer.yml │ ├── automerge.yml │ ├── ci-deploy.yml │ ├── ci.yml │ ├── greetings.yml │ ├── issue.yml │ └── main.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LOCAL DEPLOYMENT.md ├── README.md ├── firebase.json ├── package.json ├── public ├── icon.ico ├── index.html ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── assets ├── about.png ├── contracted-logo.png ├── img.png ├── logo.png ├── not-found-art.png └── under-dev-art.png ├── components ├── AuthForms │ ├── index.js │ └── style.js ├── BottomNavBar │ ├── index.js │ └── style.js ├── Header │ ├── index.js │ └── style.js ├── LikePanel │ ├── index.js │ └── style.js ├── Post │ ├── index.js │ └── style.js └── Sidebar │ ├── index.js │ └── style.js ├── firebase.js ├── index.js ├── pages ├── AboutPage │ ├── index.js │ └── style.js ├── ExplorePage │ ├── index.js │ └── style.js ├── HomePage │ ├── index.js │ └── style.js ├── NotFoundPage │ ├── index.js │ └── style.js ├── PostPage │ ├── index.js │ └── style.js ├── ProfilePage │ ├── index.js │ └── style.css ├── UnderDevPage │ ├── index.js │ └── style.js └── UploadPage │ ├── index.js │ └── style.js ├── serviceWorker.js ├── style.js └── theme.js /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.firebase/hosting.YnVpbGQ.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.firebase/hosting.YnVpbGQ.cache -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/assigner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/assigner.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/Auto_Reply_On_Merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/workflows/Auto_Reply_On_Merge.yml -------------------------------------------------------------------------------- /.github/workflows/auto_assign_reviewer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/workflows/auto_assign_reviewer.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/ci-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/workflows/ci-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/workflows/issue.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/LICENSE -------------------------------------------------------------------------------- /LOCAL DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/LOCAL DEPLOYMENT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/package.json -------------------------------------------------------------------------------- /public/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/public/icon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/assets/about.png -------------------------------------------------------------------------------- /src/assets/contracted-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/assets/contracted-logo.png -------------------------------------------------------------------------------- /src/assets/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/assets/img.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/not-found-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/assets/not-found-art.png -------------------------------------------------------------------------------- /src/assets/under-dev-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/assets/under-dev-art.png -------------------------------------------------------------------------------- /src/components/AuthForms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/components/AuthForms/index.js -------------------------------------------------------------------------------- /src/components/AuthForms/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/components/AuthForms/style.js -------------------------------------------------------------------------------- /src/components/BottomNavBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/components/BottomNavBar/index.js -------------------------------------------------------------------------------- /src/components/BottomNavBar/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/components/BottomNavBar/style.js -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/Header/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/components/Header/style.js -------------------------------------------------------------------------------- /src/components/LikePanel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/components/LikePanel/index.js -------------------------------------------------------------------------------- /src/components/LikePanel/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/components/LikePanel/style.js -------------------------------------------------------------------------------- /src/components/Post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/components/Post/index.js -------------------------------------------------------------------------------- /src/components/Post/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/components/Post/style.js -------------------------------------------------------------------------------- /src/components/Sidebar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/components/Sidebar/index.js -------------------------------------------------------------------------------- /src/components/Sidebar/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/components/Sidebar/style.js -------------------------------------------------------------------------------- /src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/firebase.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/AboutPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/AboutPage/index.js -------------------------------------------------------------------------------- /src/pages/AboutPage/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/AboutPage/style.js -------------------------------------------------------------------------------- /src/pages/ExplorePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/ExplorePage/index.js -------------------------------------------------------------------------------- /src/pages/ExplorePage/style.js: -------------------------------------------------------------------------------- 1 | export default function styles(theme) { 2 | return {}; 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/HomePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/HomePage/index.js -------------------------------------------------------------------------------- /src/pages/HomePage/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/HomePage/style.js -------------------------------------------------------------------------------- /src/pages/NotFoundPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/NotFoundPage/index.js -------------------------------------------------------------------------------- /src/pages/NotFoundPage/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/NotFoundPage/style.js -------------------------------------------------------------------------------- /src/pages/PostPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/PostPage/index.js -------------------------------------------------------------------------------- /src/pages/PostPage/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/PostPage/style.js -------------------------------------------------------------------------------- /src/pages/ProfilePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/ProfilePage/index.js -------------------------------------------------------------------------------- /src/pages/ProfilePage/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/ProfilePage/style.css -------------------------------------------------------------------------------- /src/pages/UnderDevPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/UnderDevPage/index.js -------------------------------------------------------------------------------- /src/pages/UnderDevPage/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/UnderDevPage/style.js -------------------------------------------------------------------------------- /src/pages/UploadPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/UploadPage/index.js -------------------------------------------------------------------------------- /src/pages/UploadPage/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/pages/UploadPage/style.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/style.js -------------------------------------------------------------------------------- /src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Recess/HEAD/src/theme.js --------------------------------------------------------------------------------