├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── example-row.png ├── github-template.png ├── icon.png ├── logo.png └── template.png ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── config ├── env.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── paths.js ├── webpack.config.dev.js ├── webpack.config.prod.js └── webpackDevServer.config.js ├── now.json ├── package.json ├── public ├── app-icon-original.png ├── app-icon-taskbar.png ├── app-icon.png ├── favicon.ico ├── icon.png ├── iconCircle.png ├── iconCircleDot.png ├── iconCircleDotAlt.png ├── iconDot.png ├── index.html ├── manifest.json ├── new-app-icon-rounded.png ├── new-app-icon.png └── not_found.html ├── scripts ├── build.js ├── start.js └── test.js └── src ├── App.js ├── components ├── Confetti │ └── index.js ├── Curve │ ├── curve.svg │ └── index.js ├── ErrorMessage.js ├── Icon │ ├── index.js │ └── svg │ │ ├── alarm.svg │ │ ├── all_inbox.svg │ │ ├── back.svg │ │ ├── blur.svg │ │ ├── bolt-alt.svg │ │ ├── bolt-white.svg │ │ ├── bolt.svg │ │ ├── bookmark-alt-white.svg │ │ ├── bookmark-alt.svg │ │ ├── bookmark.svg │ │ ├── bookmarks.svg │ │ ├── bubbles.svg │ │ ├── check.svg │ │ ├── clock.svg │ │ ├── cloudoff.svg │ │ ├── convo.svg │ │ ├── done-all.svg │ │ ├── done.svg │ │ ├── ear.svg │ │ ├── eye-white.svg │ │ ├── eye.svg │ │ ├── github │ │ ├── issue-closed.svg │ │ ├── issue-open.svg │ │ ├── pr-closed.svg │ │ ├── pr-merged.svg │ │ └── pr-open.svg │ │ ├── headphones.svg │ │ ├── help.svg │ │ ├── hot.svg │ │ ├── inbox-white.svg │ │ ├── inbox.svg │ │ ├── info.svg │ │ ├── left-arrow.svg │ │ ├── locked.svg │ │ ├── low_priority.svg │ │ ├── menu.svg │ │ ├── next.svg │ │ ├── nomusic.svg │ │ ├── nophone.svg │ │ ├── notifications-off.svg │ │ ├── notifications-on.svg │ │ ├── people-alt-white.svg │ │ ├── people-alt.svg │ │ ├── people-white.svg │ │ ├── people.svg │ │ ├── prev.svg │ │ ├── rank.svg │ │ ├── refresh.svg │ │ ├── right-arrow.svg │ │ ├── ring.svg │ │ ├── search.svg │ │ ├── settings.svg │ │ ├── shield.svg │ │ ├── star-alt.svg │ │ ├── star.svg │ │ ├── sync.svg │ │ ├── tag-white.svg │ │ ├── tag.svg │ │ ├── timer.svg │ │ ├── trash.svg │ │ ├── undo.svg │ │ ├── unlocked.svg │ │ ├── user.svg │ │ ├── warn.svg │ │ ├── x.svg │ │ └── zap.svg ├── LoadingIcon │ ├── index.js │ ├── loader-alt.svg │ ├── loader-white.svg │ └── loader.svg ├── Logo │ ├── icon-black.png │ ├── icon-gray.png │ ├── index.js │ ├── logo-white.png │ ├── meteorite-purple.svg │ ├── meteorite-v2-2.png │ ├── meteorite-v2.png │ └── meteorite.svg └── buttons │ ├── AuthenticationButton.js │ └── index.js ├── constants ├── cookies.js ├── filters.js ├── index.js ├── reasons.js ├── routes.js └── status.js ├── enhance └── index.js ├── images ├── demo.png ├── icon-white.png ├── icon.png ├── iconCircle.png ├── iconCircleDot.png ├── iconCircleDotAlt.png ├── iconDot.png ├── issue-bg.png ├── issue.png ├── logoSquare.png ├── logos │ ├── facebook-logo.png │ ├── forward-logo.png │ ├── react-logo.png │ ├── remote-hq-logo.png │ └── robin-logo.png ├── pr-bg.png ├── pr.png ├── regular-screenshot.png ├── row.png ├── safari-header-original.png ├── safari-header.png ├── screenshots │ ├── highlight.png │ ├── iphone-x-mockup.png │ ├── iphone-x.png │ ├── item-2.png │ ├── item.png │ ├── new │ │ ├── dashboard-dark.png │ │ ├── dashboard-light.png │ │ ├── dashboard-reasons-dark.png │ │ ├── dashboard-reasons-light.png │ │ ├── dashboard-scores-dark.png │ │ ├── dashboard-scores-light.png │ │ ├── settings-participating.png │ │ ├── settings-watching.png │ │ └── settings.png │ ├── pwa-demo.png │ ├── pwa-menu.png │ ├── screenshot-bigger.png │ ├── screenshot-score.png │ └── screenshot.png ├── svg │ ├── blank.svg │ ├── blob-shape-2.svg │ ├── blob-shape-3.svg │ ├── blob-shape-4.svg │ ├── blob-shape-5.svg │ ├── blob-shape-6.svg │ ├── blob-shape.svg │ ├── blooming.svg │ ├── good-team.svg │ ├── icons │ │ ├── bedtime.svg │ │ ├── check.svg │ │ ├── cloud_off.svg │ │ ├── gps_fixed.svg │ │ ├── insights.svg │ │ ├── notifications_active.svg │ │ ├── priority_high.svg │ │ ├── push_pin.svg │ │ ├── rule.svg │ │ ├── smart_button.svg │ │ ├── speed.svg │ │ ├── timeline.svg │ │ ├── tune.svg │ │ └── wb_iridescent.svg │ ├── list.svg │ ├── mention.svg │ ├── mobile.svg │ ├── not-found.svg │ └── process.svg └── traditional-screenshot.png ├── index.js ├── pages ├── Guide │ ├── Scene.js │ └── index.js ├── Home │ ├── Scene.js │ ├── WorkflowToggle.js │ └── index.js ├── Login │ ├── Scene.js │ ├── Scene.new.js │ ├── TokenHandler.js │ └── index.js ├── NotificationsRedesign │ ├── Scene.js │ ├── index.js │ └── redesign │ │ ├── FilterSearch.js │ │ ├── Scene.js │ │ ├── ui │ │ ├── EmptyState.js │ │ ├── index.js │ │ └── ui.js │ │ ├── utils.js │ │ └── utils.test.js ├── Pricing │ ├── Scene.js │ └── index.js ├── common │ └── index.js └── index.js ├── providers ├── Auth.js ├── Cookies.js ├── Notifications.js └── Storage.js ├── serviceWorker.js ├── styles ├── font.css ├── fonts │ ├── Camphor-Heavy.ttf │ ├── Camphor-Light.ttf │ └── Camphor-Regular.ttf ├── gradient.css └── index.css └── utils ├── facts.js ├── mocks.js └── svg.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/example-row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/.github/example-row.png -------------------------------------------------------------------------------- /.github/github-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/.github/github-template.png -------------------------------------------------------------------------------- /.github/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/.github/icon.png -------------------------------------------------------------------------------- /.github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/.github/logo.png -------------------------------------------------------------------------------- /.github/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/.github/template.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/README.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/config/env.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/package.json -------------------------------------------------------------------------------- /public/app-icon-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/app-icon-original.png -------------------------------------------------------------------------------- /public/app-icon-taskbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/app-icon-taskbar.png -------------------------------------------------------------------------------- /public/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/app-icon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/iconCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/iconCircle.png -------------------------------------------------------------------------------- /public/iconCircleDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/iconCircleDot.png -------------------------------------------------------------------------------- /public/iconCircleDotAlt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/iconCircleDotAlt.png -------------------------------------------------------------------------------- /public/iconDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/iconDot.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/new-app-icon-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/new-app-icon-rounded.png -------------------------------------------------------------------------------- /public/new-app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/new-app-icon.png -------------------------------------------------------------------------------- /public/not_found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/public/not_found.html -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Confetti/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Confetti/index.js -------------------------------------------------------------------------------- /src/components/Curve/curve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Curve/curve.svg -------------------------------------------------------------------------------- /src/components/Curve/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Curve/index.js -------------------------------------------------------------------------------- /src/components/ErrorMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/ErrorMessage.js -------------------------------------------------------------------------------- /src/components/Icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/index.js -------------------------------------------------------------------------------- /src/components/Icon/svg/alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/alarm.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/all_inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/all_inbox.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/back.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/blur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/blur.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/bolt-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/bolt-alt.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/bolt-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/bolt-white.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/bolt.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/bookmark-alt-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/bookmark-alt-white.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/bookmark-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/bookmark-alt.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/bookmark.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/bookmarks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/bookmarks.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/bubbles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/bubbles.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/check.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/clock.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/cloudoff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/cloudoff.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/convo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/convo.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/done-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/done-all.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/done.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/ear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/ear.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/eye-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/eye-white.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/eye.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/github/issue-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/github/issue-closed.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/github/issue-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/github/issue-open.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/github/pr-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/github/pr-closed.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/github/pr-merged.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/github/pr-merged.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/github/pr-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/github/pr-open.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/headphones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/headphones.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/help.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/hot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/hot.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/inbox-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/inbox-white.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/inbox.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/info.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/left-arrow.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/locked.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/low_priority.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/low_priority.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/menu.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/next.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/nomusic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/nomusic.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/nophone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/nophone.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/notifications-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/notifications-off.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/notifications-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/notifications-on.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/people-alt-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/people-alt-white.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/people-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/people-alt.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/people-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/people-white.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/people.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/prev.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/rank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/rank.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/refresh.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/right-arrow.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/ring.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/search.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/settings.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/shield.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/star-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/star-alt.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/star.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/sync.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/tag-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/tag-white.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/tag.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/timer.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/trash.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/undo.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/unlocked.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/user.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/warn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/warn.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/x.svg -------------------------------------------------------------------------------- /src/components/Icon/svg/zap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Icon/svg/zap.svg -------------------------------------------------------------------------------- /src/components/LoadingIcon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/LoadingIcon/index.js -------------------------------------------------------------------------------- /src/components/LoadingIcon/loader-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/LoadingIcon/loader-alt.svg -------------------------------------------------------------------------------- /src/components/LoadingIcon/loader-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/LoadingIcon/loader-white.svg -------------------------------------------------------------------------------- /src/components/LoadingIcon/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/LoadingIcon/loader.svg -------------------------------------------------------------------------------- /src/components/Logo/icon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Logo/icon-black.png -------------------------------------------------------------------------------- /src/components/Logo/icon-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Logo/icon-gray.png -------------------------------------------------------------------------------- /src/components/Logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Logo/index.js -------------------------------------------------------------------------------- /src/components/Logo/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Logo/logo-white.png -------------------------------------------------------------------------------- /src/components/Logo/meteorite-purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Logo/meteorite-purple.svg -------------------------------------------------------------------------------- /src/components/Logo/meteorite-v2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Logo/meteorite-v2-2.png -------------------------------------------------------------------------------- /src/components/Logo/meteorite-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Logo/meteorite-v2.png -------------------------------------------------------------------------------- /src/components/Logo/meteorite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/Logo/meteorite.svg -------------------------------------------------------------------------------- /src/components/buttons/AuthenticationButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/buttons/AuthenticationButton.js -------------------------------------------------------------------------------- /src/components/buttons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/components/buttons/index.js -------------------------------------------------------------------------------- /src/constants/cookies.js: -------------------------------------------------------------------------------- 1 | export const OAUTH_TOKEN_COOKIE = 'meteorite-oauth-token'; 2 | -------------------------------------------------------------------------------- /src/constants/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/constants/filters.js -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/constants/reasons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/constants/reasons.js -------------------------------------------------------------------------------- /src/constants/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/constants/routes.js -------------------------------------------------------------------------------- /src/constants/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/constants/status.js -------------------------------------------------------------------------------- /src/enhance/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/enhance/index.js -------------------------------------------------------------------------------- /src/images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/demo.png -------------------------------------------------------------------------------- /src/images/icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/icon-white.png -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /src/images/iconCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/iconCircle.png -------------------------------------------------------------------------------- /src/images/iconCircleDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/iconCircleDot.png -------------------------------------------------------------------------------- /src/images/iconCircleDotAlt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/iconCircleDotAlt.png -------------------------------------------------------------------------------- /src/images/iconDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/iconDot.png -------------------------------------------------------------------------------- /src/images/issue-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/issue-bg.png -------------------------------------------------------------------------------- /src/images/issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/issue.png -------------------------------------------------------------------------------- /src/images/logoSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/logoSquare.png -------------------------------------------------------------------------------- /src/images/logos/facebook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/logos/facebook-logo.png -------------------------------------------------------------------------------- /src/images/logos/forward-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/logos/forward-logo.png -------------------------------------------------------------------------------- /src/images/logos/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/logos/react-logo.png -------------------------------------------------------------------------------- /src/images/logos/remote-hq-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/logos/remote-hq-logo.png -------------------------------------------------------------------------------- /src/images/logos/robin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/logos/robin-logo.png -------------------------------------------------------------------------------- /src/images/pr-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/pr-bg.png -------------------------------------------------------------------------------- /src/images/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/pr.png -------------------------------------------------------------------------------- /src/images/regular-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/regular-screenshot.png -------------------------------------------------------------------------------- /src/images/row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/row.png -------------------------------------------------------------------------------- /src/images/safari-header-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/safari-header-original.png -------------------------------------------------------------------------------- /src/images/safari-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/safari-header.png -------------------------------------------------------------------------------- /src/images/screenshots/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/highlight.png -------------------------------------------------------------------------------- /src/images/screenshots/iphone-x-mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/iphone-x-mockup.png -------------------------------------------------------------------------------- /src/images/screenshots/iphone-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/iphone-x.png -------------------------------------------------------------------------------- /src/images/screenshots/item-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/item-2.png -------------------------------------------------------------------------------- /src/images/screenshots/item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/item.png -------------------------------------------------------------------------------- /src/images/screenshots/new/dashboard-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/new/dashboard-dark.png -------------------------------------------------------------------------------- /src/images/screenshots/new/dashboard-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/new/dashboard-light.png -------------------------------------------------------------------------------- /src/images/screenshots/new/dashboard-reasons-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/new/dashboard-reasons-dark.png -------------------------------------------------------------------------------- /src/images/screenshots/new/dashboard-reasons-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/new/dashboard-reasons-light.png -------------------------------------------------------------------------------- /src/images/screenshots/new/dashboard-scores-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/new/dashboard-scores-dark.png -------------------------------------------------------------------------------- /src/images/screenshots/new/dashboard-scores-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/new/dashboard-scores-light.png -------------------------------------------------------------------------------- /src/images/screenshots/new/settings-participating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/new/settings-participating.png -------------------------------------------------------------------------------- /src/images/screenshots/new/settings-watching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/new/settings-watching.png -------------------------------------------------------------------------------- /src/images/screenshots/new/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/new/settings.png -------------------------------------------------------------------------------- /src/images/screenshots/pwa-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/pwa-demo.png -------------------------------------------------------------------------------- /src/images/screenshots/pwa-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/pwa-menu.png -------------------------------------------------------------------------------- /src/images/screenshots/screenshot-bigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/screenshot-bigger.png -------------------------------------------------------------------------------- /src/images/screenshots/screenshot-score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/screenshot-score.png -------------------------------------------------------------------------------- /src/images/screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/screenshots/screenshot.png -------------------------------------------------------------------------------- /src/images/svg/blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/blank.svg -------------------------------------------------------------------------------- /src/images/svg/blob-shape-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/blob-shape-2.svg -------------------------------------------------------------------------------- /src/images/svg/blob-shape-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/blob-shape-3.svg -------------------------------------------------------------------------------- /src/images/svg/blob-shape-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/blob-shape-4.svg -------------------------------------------------------------------------------- /src/images/svg/blob-shape-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/blob-shape-5.svg -------------------------------------------------------------------------------- /src/images/svg/blob-shape-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/blob-shape-6.svg -------------------------------------------------------------------------------- /src/images/svg/blob-shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/blob-shape.svg -------------------------------------------------------------------------------- /src/images/svg/blooming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/blooming.svg -------------------------------------------------------------------------------- /src/images/svg/good-team.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/good-team.svg -------------------------------------------------------------------------------- /src/images/svg/icons/bedtime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/bedtime.svg -------------------------------------------------------------------------------- /src/images/svg/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/check.svg -------------------------------------------------------------------------------- /src/images/svg/icons/cloud_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/cloud_off.svg -------------------------------------------------------------------------------- /src/images/svg/icons/gps_fixed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/gps_fixed.svg -------------------------------------------------------------------------------- /src/images/svg/icons/insights.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/insights.svg -------------------------------------------------------------------------------- /src/images/svg/icons/notifications_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/notifications_active.svg -------------------------------------------------------------------------------- /src/images/svg/icons/priority_high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/priority_high.svg -------------------------------------------------------------------------------- /src/images/svg/icons/push_pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/push_pin.svg -------------------------------------------------------------------------------- /src/images/svg/icons/rule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/rule.svg -------------------------------------------------------------------------------- /src/images/svg/icons/smart_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/smart_button.svg -------------------------------------------------------------------------------- /src/images/svg/icons/speed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/speed.svg -------------------------------------------------------------------------------- /src/images/svg/icons/timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/timeline.svg -------------------------------------------------------------------------------- /src/images/svg/icons/tune.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/tune.svg -------------------------------------------------------------------------------- /src/images/svg/icons/wb_iridescent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/icons/wb_iridescent.svg -------------------------------------------------------------------------------- /src/images/svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/list.svg -------------------------------------------------------------------------------- /src/images/svg/mention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/mention.svg -------------------------------------------------------------------------------- /src/images/svg/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/mobile.svg -------------------------------------------------------------------------------- /src/images/svg/not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/not-found.svg -------------------------------------------------------------------------------- /src/images/svg/process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/svg/process.svg -------------------------------------------------------------------------------- /src/images/traditional-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/images/traditional-screenshot.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Guide/Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/Guide/Scene.js -------------------------------------------------------------------------------- /src/pages/Guide/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/Guide/index.js -------------------------------------------------------------------------------- /src/pages/Home/Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/Home/Scene.js -------------------------------------------------------------------------------- /src/pages/Home/WorkflowToggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/Home/WorkflowToggle.js -------------------------------------------------------------------------------- /src/pages/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/Home/index.js -------------------------------------------------------------------------------- /src/pages/Login/Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/Login/Scene.js -------------------------------------------------------------------------------- /src/pages/Login/Scene.new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/Login/Scene.new.js -------------------------------------------------------------------------------- /src/pages/Login/TokenHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/Login/TokenHandler.js -------------------------------------------------------------------------------- /src/pages/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/Login/index.js -------------------------------------------------------------------------------- /src/pages/NotificationsRedesign/Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/NotificationsRedesign/Scene.js -------------------------------------------------------------------------------- /src/pages/NotificationsRedesign/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/NotificationsRedesign/index.js -------------------------------------------------------------------------------- /src/pages/NotificationsRedesign/redesign/FilterSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/NotificationsRedesign/redesign/FilterSearch.js -------------------------------------------------------------------------------- /src/pages/NotificationsRedesign/redesign/Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/NotificationsRedesign/redesign/Scene.js -------------------------------------------------------------------------------- /src/pages/NotificationsRedesign/redesign/ui/EmptyState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/NotificationsRedesign/redesign/ui/EmptyState.js -------------------------------------------------------------------------------- /src/pages/NotificationsRedesign/redesign/ui/index.js: -------------------------------------------------------------------------------- 1 | export * from './ui'; 2 | -------------------------------------------------------------------------------- /src/pages/NotificationsRedesign/redesign/ui/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/NotificationsRedesign/redesign/ui/ui.js -------------------------------------------------------------------------------- /src/pages/NotificationsRedesign/redesign/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/NotificationsRedesign/redesign/utils.js -------------------------------------------------------------------------------- /src/pages/NotificationsRedesign/redesign/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/NotificationsRedesign/redesign/utils.test.js -------------------------------------------------------------------------------- /src/pages/Pricing/Scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/Pricing/Scene.js -------------------------------------------------------------------------------- /src/pages/Pricing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/Pricing/index.js -------------------------------------------------------------------------------- /src/pages/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/common/index.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/providers/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/providers/Auth.js -------------------------------------------------------------------------------- /src/providers/Cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/providers/Cookies.js -------------------------------------------------------------------------------- /src/providers/Notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/providers/Notifications.js -------------------------------------------------------------------------------- /src/providers/Storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/providers/Storage.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/styles/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/styles/font.css -------------------------------------------------------------------------------- /src/styles/fonts/Camphor-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/styles/fonts/Camphor-Heavy.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Camphor-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/styles/fonts/Camphor-Light.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Camphor-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/styles/fonts/Camphor-Regular.ttf -------------------------------------------------------------------------------- /src/styles/gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/styles/gradient.css -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/utils/facts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/utils/facts.js -------------------------------------------------------------------------------- /src/utils/mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/utils/mocks.js -------------------------------------------------------------------------------- /src/utils/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickzuber/meteorite/HEAD/src/utils/svg.js --------------------------------------------------------------------------------