├── .env.local ├── .eslintignore ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report_template.md │ ├── feature_request_template.md │ └── pull_request_template.md └── workflows │ ├── foul-language.yml │ └── greetings.yml ├── .gitignore ├── .prettierrc ├── .snyk ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── Guidelines.md ├── LICENSE.txt ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-ssr.js ├── images ├── clone.png ├── congrats.gif ├── fork.png ├── git_cheat_sheet.jpg ├── gssoc_logo.jpeg ├── open_source.png ├── pull_request.png └── welcome.png ├── package.json ├── prettier.config.js ├── rle-api.zip ├── src ├── apollo │ └── client.js ├── components │ ├── Create │ │ ├── addFootstep.js │ │ └── addPath.js │ ├── EditPath │ │ ├── editFootstep.js │ │ ├── editPath.js │ │ └── index.js │ ├── Landing │ │ ├── index.js │ │ └── searchbar.js │ ├── Layout │ │ ├── footer.js │ │ ├── layout.js │ │ ├── loader.js │ │ ├── menu.js │ │ └── sideDrawer.js │ ├── Login │ │ ├── loginFlow.js │ │ ├── signUpFlow.js │ │ └── skills.js │ ├── SEO │ │ ├── Facebook.js │ │ ├── SEO.js │ │ ├── Twitter.js │ │ └── index.js │ ├── Search │ │ ├── resultFootstepCard.js │ │ ├── resultPathCard.js │ │ └── searchResult.js │ ├── Settings │ │ ├── index.js │ │ └── settings.js │ ├── User │ │ ├── follow.js │ │ ├── footstepsCard.js │ │ ├── index.js │ │ ├── learningPathCard.js │ │ ├── learningPaths.js │ │ └── userProgressBar.js │ ├── image.js │ └── publicProfile.js ├── context │ └── userContext.js ├── firebase │ └── config.js ├── images │ ├── FAQ.png │ ├── LoginPageImg.png │ ├── aboutUs.png │ ├── brandLogo.png │ ├── figuringOut.png │ ├── footsteps │ │ ├── audio.png │ │ ├── blog.png │ │ ├── book.png │ │ ├── course.png │ │ ├── internet.png │ │ ├── page.png │ │ ├── plan.png │ │ ├── quiz.png │ │ └── video.png │ ├── icon.png │ ├── menu.png │ ├── pathEmpty.png │ ├── profile.svg │ ├── results │ │ ├── downArrow.png │ │ └── upArrow.png │ ├── roadSign.svg │ ├── signIn.png │ ├── signUp.png │ ├── versionControl.svg │ └── voiceInterface.svg ├── pages │ ├── 404.js │ ├── about.js │ ├── add.js │ ├── editPath.js │ ├── index.js │ ├── profile.js │ ├── search.js │ ├── settings.js │ └── user.js ├── styles │ ├── about.module.css │ ├── add.module.css │ ├── footer.module.css │ ├── footsteps.module.css │ ├── global.css │ ├── header.module.css │ ├── landing.module.css │ ├── layout.module.css │ ├── loader.css │ ├── login.module.css │ ├── menu.module.css │ ├── result.module.css │ ├── resultFootsteps.module.css │ ├── search.module.css │ ├── searchbar.module.css │ ├── settings.module.css │ ├── signUp.module.css │ └── user.module.css └── utils │ └── typography.js ├── static ├── favicon.ico ├── images │ └── img_share.png └── robots.txt └── yarn.lock /.env.local: -------------------------------------------------------------------------------- 1 | REACT_EDITOR=vscode -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | public 2 | static 3 | .cache 4 | content -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/.github/ISSUE_TEMPLATE/bug_report_template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/.github/ISSUE_TEMPLATE/feature_request_template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/.github/ISSUE_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/foul-language.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/.github/workflows/foul-language.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/.prettierrc -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/.snyk -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/Guidelines.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /images/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/images/clone.png -------------------------------------------------------------------------------- /images/congrats.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/images/congrats.gif -------------------------------------------------------------------------------- /images/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/images/fork.png -------------------------------------------------------------------------------- /images/git_cheat_sheet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/images/git_cheat_sheet.jpg -------------------------------------------------------------------------------- /images/gssoc_logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/images/gssoc_logo.jpeg -------------------------------------------------------------------------------- /images/open_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/images/open_source.png -------------------------------------------------------------------------------- /images/pull_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/images/pull_request.png -------------------------------------------------------------------------------- /images/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/images/welcome.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@upstatement/prettier-config'); 2 | -------------------------------------------------------------------------------- /rle-api.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/rle-api.zip -------------------------------------------------------------------------------- /src/apollo/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/apollo/client.js -------------------------------------------------------------------------------- /src/components/Create/addFootstep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Create/addFootstep.js -------------------------------------------------------------------------------- /src/components/Create/addPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Create/addPath.js -------------------------------------------------------------------------------- /src/components/EditPath/editFootstep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/EditPath/editFootstep.js -------------------------------------------------------------------------------- /src/components/EditPath/editPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/EditPath/editPath.js -------------------------------------------------------------------------------- /src/components/EditPath/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/EditPath/index.js -------------------------------------------------------------------------------- /src/components/Landing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Landing/index.js -------------------------------------------------------------------------------- /src/components/Landing/searchbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Landing/searchbar.js -------------------------------------------------------------------------------- /src/components/Layout/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Layout/footer.js -------------------------------------------------------------------------------- /src/components/Layout/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Layout/layout.js -------------------------------------------------------------------------------- /src/components/Layout/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Layout/loader.js -------------------------------------------------------------------------------- /src/components/Layout/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Layout/menu.js -------------------------------------------------------------------------------- /src/components/Layout/sideDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Layout/sideDrawer.js -------------------------------------------------------------------------------- /src/components/Login/loginFlow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Login/loginFlow.js -------------------------------------------------------------------------------- /src/components/Login/signUpFlow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Login/signUpFlow.js -------------------------------------------------------------------------------- /src/components/Login/skills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Login/skills.js -------------------------------------------------------------------------------- /src/components/SEO/Facebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/SEO/Facebook.js -------------------------------------------------------------------------------- /src/components/SEO/SEO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/SEO/SEO.js -------------------------------------------------------------------------------- /src/components/SEO/Twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/SEO/Twitter.js -------------------------------------------------------------------------------- /src/components/SEO/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/SEO/index.js -------------------------------------------------------------------------------- /src/components/Search/resultFootstepCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Search/resultFootstepCard.js -------------------------------------------------------------------------------- /src/components/Search/resultPathCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Search/resultPathCard.js -------------------------------------------------------------------------------- /src/components/Search/searchResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Search/searchResult.js -------------------------------------------------------------------------------- /src/components/Settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Settings/index.js -------------------------------------------------------------------------------- /src/components/Settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/Settings/settings.js -------------------------------------------------------------------------------- /src/components/User/follow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/User/follow.js -------------------------------------------------------------------------------- /src/components/User/footstepsCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/User/footstepsCard.js -------------------------------------------------------------------------------- /src/components/User/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/User/index.js -------------------------------------------------------------------------------- /src/components/User/learningPathCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/User/learningPathCard.js -------------------------------------------------------------------------------- /src/components/User/learningPaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/User/learningPaths.js -------------------------------------------------------------------------------- /src/components/User/userProgressBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/User/userProgressBar.js -------------------------------------------------------------------------------- /src/components/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/image.js -------------------------------------------------------------------------------- /src/components/publicProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/components/publicProfile.js -------------------------------------------------------------------------------- /src/context/userContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/context/userContext.js -------------------------------------------------------------------------------- /src/firebase/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/firebase/config.js -------------------------------------------------------------------------------- /src/images/FAQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/FAQ.png -------------------------------------------------------------------------------- /src/images/LoginPageImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/LoginPageImg.png -------------------------------------------------------------------------------- /src/images/aboutUs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/aboutUs.png -------------------------------------------------------------------------------- /src/images/brandLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/brandLogo.png -------------------------------------------------------------------------------- /src/images/figuringOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/figuringOut.png -------------------------------------------------------------------------------- /src/images/footsteps/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/footsteps/audio.png -------------------------------------------------------------------------------- /src/images/footsteps/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/footsteps/blog.png -------------------------------------------------------------------------------- /src/images/footsteps/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/footsteps/book.png -------------------------------------------------------------------------------- /src/images/footsteps/course.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/footsteps/course.png -------------------------------------------------------------------------------- /src/images/footsteps/internet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/footsteps/internet.png -------------------------------------------------------------------------------- /src/images/footsteps/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/footsteps/page.png -------------------------------------------------------------------------------- /src/images/footsteps/plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/footsteps/plan.png -------------------------------------------------------------------------------- /src/images/footsteps/quiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/footsteps/quiz.png -------------------------------------------------------------------------------- /src/images/footsteps/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/footsteps/video.png -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /src/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/menu.png -------------------------------------------------------------------------------- /src/images/pathEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/pathEmpty.png -------------------------------------------------------------------------------- /src/images/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/profile.svg -------------------------------------------------------------------------------- /src/images/results/downArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/results/downArrow.png -------------------------------------------------------------------------------- /src/images/results/upArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/results/upArrow.png -------------------------------------------------------------------------------- /src/images/roadSign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/roadSign.svg -------------------------------------------------------------------------------- /src/images/signIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/signIn.png -------------------------------------------------------------------------------- /src/images/signUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/signUp.png -------------------------------------------------------------------------------- /src/images/versionControl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/versionControl.svg -------------------------------------------------------------------------------- /src/images/voiceInterface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/images/voiceInterface.svg -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/pages/about.js -------------------------------------------------------------------------------- /src/pages/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/pages/add.js -------------------------------------------------------------------------------- /src/pages/editPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/pages/editPath.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/pages/profile.js -------------------------------------------------------------------------------- /src/pages/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/pages/search.js -------------------------------------------------------------------------------- /src/pages/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/pages/settings.js -------------------------------------------------------------------------------- /src/pages/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/pages/user.js -------------------------------------------------------------------------------- /src/styles/about.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/about.module.css -------------------------------------------------------------------------------- /src/styles/add.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/add.module.css -------------------------------------------------------------------------------- /src/styles/footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/footer.module.css -------------------------------------------------------------------------------- /src/styles/footsteps.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/footsteps.module.css -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/styles/header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/header.module.css -------------------------------------------------------------------------------- /src/styles/landing.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/landing.module.css -------------------------------------------------------------------------------- /src/styles/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/layout.module.css -------------------------------------------------------------------------------- /src/styles/loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/loader.css -------------------------------------------------------------------------------- /src/styles/login.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/login.module.css -------------------------------------------------------------------------------- /src/styles/menu.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/menu.module.css -------------------------------------------------------------------------------- /src/styles/result.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/result.module.css -------------------------------------------------------------------------------- /src/styles/resultFootsteps.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/resultFootsteps.module.css -------------------------------------------------------------------------------- /src/styles/search.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/search.module.css -------------------------------------------------------------------------------- /src/styles/searchbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/searchbar.module.css -------------------------------------------------------------------------------- /src/styles/settings.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/settings.module.css -------------------------------------------------------------------------------- /src/styles/signUp.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/signUp.module.css -------------------------------------------------------------------------------- /src/styles/user.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/styles/user.module.css -------------------------------------------------------------------------------- /src/utils/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/src/utils/typography.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/images/img_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/static/images/img_share.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/footsteps-app/HEAD/yarn.lock --------------------------------------------------------------------------------