├── .env.EXAMPLE ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── content.md │ ├── development.md │ └── fix.md └── workflows │ └── fossa.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _redirects ├── backend ├── README.md ├── config │ ├── .checksums │ └── @sanity │ │ ├── data-aspects.json │ │ ├── default-layout.json │ │ ├── default-login.json │ │ └── form-builder.json ├── package-lock.json ├── package.json ├── plugins │ ├── .gitkeep │ └── cloudinary-video │ │ ├── .gitignore │ │ ├── babel.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── sanity.json │ │ └── src │ │ ├── components │ │ ├── input.js │ │ └── preview.js │ │ ├── index.js │ │ └── schemas │ │ ├── video-asset.js │ │ └── video.js ├── sanity.json ├── schemas │ ├── answer.js │ ├── author.js │ ├── blockContent.js │ ├── category.js │ ├── certification.js │ ├── checkpoint.js │ ├── explorer.js │ ├── instructor.js │ ├── marketingCopy.js │ ├── mission.js │ ├── post.js │ ├── question.js │ ├── schema.js │ ├── stage.js │ └── video.js ├── static │ ├── .gitkeep │ └── favicon.ico ├── tsconfig.json └── yarn.lock ├── functions ├── auth-callback.js ├── auth.js ├── certificate-3-missions.js ├── check-achievement.js ├── check-reward-status.js ├── check-reward.js ├── cloudinary-eager-notification.js └── util │ ├── oauth.js │ └── postToHasura.js ├── jsconfig.json ├── netlify.toml ├── package.json ├── public ├── _redirects ├── captions │ └── .gitkeep ├── favicon.ico ├── homepage-bk.jpg ├── page-bk.svg ├── robots.txt └── user-profile.jpg └── src ├── components ├── Astronaut.js ├── Astronaut.module.css ├── AvatarRow.js ├── AvatarRow.module.css ├── ChonkyFooter.js ├── ChonkyFooter.module.css ├── Countdown.js ├── ExplorersLogo.js ├── FloatingAstronaut.js ├── Footer.js ├── Footer.module.css ├── Hamburger.js ├── Hamburger.module.css ├── Header404.js ├── Header404.module.css ├── Hero.js ├── Hero.module.css ├── HomeHero.js ├── HomeHero.module.css ├── IconClose.js ├── Layout.js ├── Layout.module.css ├── LoginNudge.js ├── LoginNudge.module.css ├── MissionCard.js ├── MissionCard.module.css ├── MissionTracker.js ├── MissionTracker.module.css ├── ModalCertLoading.js ├── ModalCertLoading.module.css ├── ModalCongrats.js ├── ModalCongrats.module.css ├── Navigation.js ├── Navigation.module.css ├── NetlifyLogo.js ├── NetlifyLogo.module.css ├── SEO.js ├── StageSummary.js ├── Sun.js ├── Tracker.js ├── Tracker.module.css ├── UserActivityGraph.js ├── UserActivityGraph.module.css ├── UserCourseInfo.module.css ├── UserDial.js ├── UserDial.module.css ├── UserMaincontent.js ├── UserMaincontent.module.css ├── UserMissionInfo.js ├── UserProfilesvg.js ├── UserProfilesvg.module.css ├── UserRadar.js ├── UserRadar.module.css ├── UserSidebar.js ├── UserSidebar.module.css ├── VideoPlayer.js ├── VideoPlayer.module.css └── mdx │ └── Aside.js ├── context ├── missions.js ├── stages.js └── user.js ├── disabled-pages └── api │ ├── get-mission-data.js │ ├── get-stage-data.js │ ├── get-user-info.js │ └── mission │ └── [slug].js ├── hooks └── useMediaQuery.js ├── pages ├── 404.js ├── About.module.css ├── Missions.module.css ├── Profile.module.css ├── _app.js ├── _document.js ├── about.js ├── index.js ├── learn │ ├── Mission.module.css │ ├── [mission].js │ └── [mission] │ │ ├── Stage.module.css │ │ └── [stage].js ├── missions.js └── profile.js ├── styles ├── global.css └── normalize.css └── util ├── cloudinary.js ├── confetti.js ├── constants.js ├── mdxClient.js ├── mdxCustomComponents.js ├── mdxServer.js ├── sanity.js └── twitter.js /.env.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/.env.EXAMPLE -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/.github/ISSUE_TEMPLATE/content.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/.github/ISSUE_TEMPLATE/development.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/.github/ISSUE_TEMPLATE/fix.md -------------------------------------------------------------------------------- /.github/workflows/fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/.github/workflows/fossa.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/README.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/_redirects -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/config/.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/config/.checksums -------------------------------------------------------------------------------- /backend/config/@sanity/data-aspects.json: -------------------------------------------------------------------------------- 1 | { 2 | "listOptions": {} 3 | } 4 | -------------------------------------------------------------------------------- /backend/config/@sanity/default-layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/config/@sanity/default-layout.json -------------------------------------------------------------------------------- /backend/config/@sanity/default-login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/config/@sanity/default-login.json -------------------------------------------------------------------------------- /backend/config/@sanity/form-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/config/@sanity/form-builder.json -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | User-specific packages can be placed here 2 | -------------------------------------------------------------------------------- /backend/plugins/cloudinary-video/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /backend/plugins/cloudinary-video/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/plugins/cloudinary-video/babel.config.js -------------------------------------------------------------------------------- /backend/plugins/cloudinary-video/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/plugins/cloudinary-video/package-lock.json -------------------------------------------------------------------------------- /backend/plugins/cloudinary-video/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/plugins/cloudinary-video/package.json -------------------------------------------------------------------------------- /backend/plugins/cloudinary-video/sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/plugins/cloudinary-video/sanity.json -------------------------------------------------------------------------------- /backend/plugins/cloudinary-video/src/components/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/plugins/cloudinary-video/src/components/input.js -------------------------------------------------------------------------------- /backend/plugins/cloudinary-video/src/components/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/plugins/cloudinary-video/src/components/preview.js -------------------------------------------------------------------------------- /backend/plugins/cloudinary-video/src/index.js: -------------------------------------------------------------------------------- 1 | // boop 2 | -------------------------------------------------------------------------------- /backend/plugins/cloudinary-video/src/schemas/video-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/plugins/cloudinary-video/src/schemas/video-asset.js -------------------------------------------------------------------------------- /backend/plugins/cloudinary-video/src/schemas/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/plugins/cloudinary-video/src/schemas/video.js -------------------------------------------------------------------------------- /backend/sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/sanity.json -------------------------------------------------------------------------------- /backend/schemas/answer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/answer.js -------------------------------------------------------------------------------- /backend/schemas/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/author.js -------------------------------------------------------------------------------- /backend/schemas/blockContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/blockContent.js -------------------------------------------------------------------------------- /backend/schemas/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/category.js -------------------------------------------------------------------------------- /backend/schemas/certification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/certification.js -------------------------------------------------------------------------------- /backend/schemas/checkpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/checkpoint.js -------------------------------------------------------------------------------- /backend/schemas/explorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/explorer.js -------------------------------------------------------------------------------- /backend/schemas/instructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/instructor.js -------------------------------------------------------------------------------- /backend/schemas/marketingCopy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/marketingCopy.js -------------------------------------------------------------------------------- /backend/schemas/mission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/mission.js -------------------------------------------------------------------------------- /backend/schemas/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/post.js -------------------------------------------------------------------------------- /backend/schemas/question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/question.js -------------------------------------------------------------------------------- /backend/schemas/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/schema.js -------------------------------------------------------------------------------- /backend/schemas/stage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/stage.js -------------------------------------------------------------------------------- /backend/schemas/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/schemas/video.js -------------------------------------------------------------------------------- /backend/static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/static/.gitkeep -------------------------------------------------------------------------------- /backend/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/static/favicon.ico -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/backend/yarn.lock -------------------------------------------------------------------------------- /functions/auth-callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/functions/auth-callback.js -------------------------------------------------------------------------------- /functions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/functions/auth.js -------------------------------------------------------------------------------- /functions/certificate-3-missions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/functions/certificate-3-missions.js -------------------------------------------------------------------------------- /functions/check-achievement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/functions/check-achievement.js -------------------------------------------------------------------------------- /functions/check-reward-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/functions/check-reward-status.js -------------------------------------------------------------------------------- /functions/check-reward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/functions/check-reward.js -------------------------------------------------------------------------------- /functions/cloudinary-eager-notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/functions/cloudinary-eager-notification.js -------------------------------------------------------------------------------- /functions/util/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/functions/util/oauth.js -------------------------------------------------------------------------------- /functions/util/postToHasura.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/functions/util/postToHasura.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/jsconfig.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /learn /missions 301 -------------------------------------------------------------------------------- /public/captions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/homepage-bk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/public/homepage-bk.jpg -------------------------------------------------------------------------------- /public/page-bk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/public/page-bk.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/user-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/public/user-profile.jpg -------------------------------------------------------------------------------- /src/components/Astronaut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Astronaut.js -------------------------------------------------------------------------------- /src/components/Astronaut.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Astronaut.module.css -------------------------------------------------------------------------------- /src/components/AvatarRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/AvatarRow.js -------------------------------------------------------------------------------- /src/components/AvatarRow.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/AvatarRow.module.css -------------------------------------------------------------------------------- /src/components/ChonkyFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/ChonkyFooter.js -------------------------------------------------------------------------------- /src/components/ChonkyFooter.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/ChonkyFooter.module.css -------------------------------------------------------------------------------- /src/components/Countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Countdown.js -------------------------------------------------------------------------------- /src/components/ExplorersLogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/ExplorersLogo.js -------------------------------------------------------------------------------- /src/components/FloatingAstronaut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/FloatingAstronaut.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Footer.module.css -------------------------------------------------------------------------------- /src/components/Hamburger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Hamburger.js -------------------------------------------------------------------------------- /src/components/Hamburger.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Hamburger.module.css -------------------------------------------------------------------------------- /src/components/Header404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Header404.js -------------------------------------------------------------------------------- /src/components/Header404.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Header404.module.css -------------------------------------------------------------------------------- /src/components/Hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Hero.js -------------------------------------------------------------------------------- /src/components/Hero.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Hero.module.css -------------------------------------------------------------------------------- /src/components/HomeHero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/HomeHero.js -------------------------------------------------------------------------------- /src/components/HomeHero.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/HomeHero.module.css -------------------------------------------------------------------------------- /src/components/IconClose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/IconClose.js -------------------------------------------------------------------------------- /src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Layout.js -------------------------------------------------------------------------------- /src/components/Layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Layout.module.css -------------------------------------------------------------------------------- /src/components/LoginNudge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/LoginNudge.js -------------------------------------------------------------------------------- /src/components/LoginNudge.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/LoginNudge.module.css -------------------------------------------------------------------------------- /src/components/MissionCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/MissionCard.js -------------------------------------------------------------------------------- /src/components/MissionCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/MissionCard.module.css -------------------------------------------------------------------------------- /src/components/MissionTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/MissionTracker.js -------------------------------------------------------------------------------- /src/components/MissionTracker.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/MissionTracker.module.css -------------------------------------------------------------------------------- /src/components/ModalCertLoading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/ModalCertLoading.js -------------------------------------------------------------------------------- /src/components/ModalCertLoading.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/ModalCertLoading.module.css -------------------------------------------------------------------------------- /src/components/ModalCongrats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/ModalCongrats.js -------------------------------------------------------------------------------- /src/components/ModalCongrats.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/ModalCongrats.module.css -------------------------------------------------------------------------------- /src/components/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Navigation.js -------------------------------------------------------------------------------- /src/components/Navigation.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Navigation.module.css -------------------------------------------------------------------------------- /src/components/NetlifyLogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/NetlifyLogo.js -------------------------------------------------------------------------------- /src/components/NetlifyLogo.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/NetlifyLogo.module.css -------------------------------------------------------------------------------- /src/components/SEO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/SEO.js -------------------------------------------------------------------------------- /src/components/StageSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/StageSummary.js -------------------------------------------------------------------------------- /src/components/Sun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Sun.js -------------------------------------------------------------------------------- /src/components/Tracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Tracker.js -------------------------------------------------------------------------------- /src/components/Tracker.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/Tracker.module.css -------------------------------------------------------------------------------- /src/components/UserActivityGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/UserActivityGraph.js -------------------------------------------------------------------------------- /src/components/UserActivityGraph.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/UserActivityGraph.module.css -------------------------------------------------------------------------------- /src/components/UserCourseInfo.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/UserCourseInfo.module.css -------------------------------------------------------------------------------- /src/components/UserDial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/UserDial.js -------------------------------------------------------------------------------- /src/components/UserDial.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/UserDial.module.css -------------------------------------------------------------------------------- /src/components/UserMaincontent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/UserMaincontent.js -------------------------------------------------------------------------------- /src/components/UserMaincontent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/UserMaincontent.module.css -------------------------------------------------------------------------------- /src/components/UserMissionInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/UserMissionInfo.js -------------------------------------------------------------------------------- /src/components/UserProfilesvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/UserProfilesvg.js -------------------------------------------------------------------------------- /src/components/UserProfilesvg.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/UserProfilesvg.module.css -------------------------------------------------------------------------------- /src/components/UserRadar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/UserRadar.js -------------------------------------------------------------------------------- /src/components/UserRadar.module.css: -------------------------------------------------------------------------------- 1 | .radar text { 2 | fill: white; 3 | } -------------------------------------------------------------------------------- /src/components/UserSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/UserSidebar.js -------------------------------------------------------------------------------- /src/components/UserSidebar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/UserSidebar.module.css -------------------------------------------------------------------------------- /src/components/VideoPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/VideoPlayer.js -------------------------------------------------------------------------------- /src/components/VideoPlayer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/VideoPlayer.module.css -------------------------------------------------------------------------------- /src/components/mdx/Aside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/components/mdx/Aside.js -------------------------------------------------------------------------------- /src/context/missions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/context/missions.js -------------------------------------------------------------------------------- /src/context/stages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/context/stages.js -------------------------------------------------------------------------------- /src/context/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/context/user.js -------------------------------------------------------------------------------- /src/disabled-pages/api/get-mission-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/disabled-pages/api/get-mission-data.js -------------------------------------------------------------------------------- /src/disabled-pages/api/get-stage-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/disabled-pages/api/get-stage-data.js -------------------------------------------------------------------------------- /src/disabled-pages/api/get-user-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/disabled-pages/api/get-user-info.js -------------------------------------------------------------------------------- /src/disabled-pages/api/mission/[slug].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/disabled-pages/api/mission/[slug].js -------------------------------------------------------------------------------- /src/hooks/useMediaQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/hooks/useMediaQuery.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/About.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/About.module.css -------------------------------------------------------------------------------- /src/pages/Missions.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/Missions.module.css -------------------------------------------------------------------------------- /src/pages/Profile.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/Profile.module.css -------------------------------------------------------------------------------- /src/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/_app.js -------------------------------------------------------------------------------- /src/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/_document.js -------------------------------------------------------------------------------- /src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/about.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/learn/Mission.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/learn/Mission.module.css -------------------------------------------------------------------------------- /src/pages/learn/[mission].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/learn/[mission].js -------------------------------------------------------------------------------- /src/pages/learn/[mission]/Stage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/learn/[mission]/Stage.module.css -------------------------------------------------------------------------------- /src/pages/learn/[mission]/[stage].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/learn/[mission]/[stage].js -------------------------------------------------------------------------------- /src/pages/missions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/missions.js -------------------------------------------------------------------------------- /src/pages/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/pages/profile.js -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/styles/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/styles/normalize.css -------------------------------------------------------------------------------- /src/util/cloudinary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/util/cloudinary.js -------------------------------------------------------------------------------- /src/util/confetti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/util/confetti.js -------------------------------------------------------------------------------- /src/util/constants.js: -------------------------------------------------------------------------------- 1 | export const SITE_DOMAIN = 'https://explorers.netlify.com'; 2 | -------------------------------------------------------------------------------- /src/util/mdxClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/util/mdxClient.js -------------------------------------------------------------------------------- /src/util/mdxCustomComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/util/mdxCustomComponents.js -------------------------------------------------------------------------------- /src/util/mdxServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/util/mdxServer.js -------------------------------------------------------------------------------- /src/util/sanity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/util/sanity.js -------------------------------------------------------------------------------- /src/util/twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify/explorers/HEAD/src/util/twitter.js --------------------------------------------------------------------------------