├── .env ├── .eslintrc.js ├── .github └── ISSUE_TEMPLATE │ ├── 1.bug_report.yml │ ├── 2.feature_request.yml │ └── config.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .lintstagedrc ├── .prettierrc.json ├── .stylelintrc.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── jsconfig.json ├── package.json ├── public ├── _redirects ├── favicon.png ├── favicon.svg ├── index.html ├── manifest.json ├── preview.jpg └── robots.txt ├── screenshots ├── federike.png ├── forum.png ├── light.png └── merveilles.png ├── src ├── api │ ├── account │ │ ├── index.js │ │ ├── mutations.js │ │ └── queries.js │ ├── followers │ │ ├── index.js │ │ ├── mutations.js │ │ └── queries.js │ ├── following │ │ ├── index.js │ │ ├── mutations.js │ │ └── queries.js │ ├── helpers.js │ └── lists │ │ ├── index.js │ │ ├── mutations.js │ │ └── queries.js ├── components │ ├── errors │ │ ├── error-full-page │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── error-query-full-page │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── error-query │ │ │ ├── index.js │ │ │ ├── styles.css │ │ │ └── too-many-requests │ │ │ │ ├── index.js │ │ │ │ └── styles.css │ │ ├── error-route-query-boundry.js │ │ └── error-route │ │ │ ├── index.js │ │ │ └── styles.css │ ├── header │ │ ├── index.js │ │ └── styles.css │ ├── message │ │ ├── index.js │ │ └── styles.css │ ├── spinner │ │ ├── index.js │ │ └── styles.css │ ├── svg-filter │ │ ├── filter.svg │ │ ├── index.js │ │ └── styles.css │ ├── table │ │ ├── cell-bool │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── index.js │ │ └── styles.css │ ├── tag │ │ ├── index.js │ │ └── styles.css │ └── time │ │ └── index.js ├── containers │ ├── account │ │ ├── account-unfollow-confirm │ │ │ ├── index.js │ │ │ └── styles.css │ │ └── account-unfollow-row │ │ │ ├── index.js │ │ │ └── styles.css │ ├── follower │ │ ├── follower-load-all │ │ │ └── index.js │ │ ├── follower-load-next-page-button.js │ │ ├── follower-table │ │ │ ├── columns.js │ │ │ ├── helpers.js │ │ │ └── index.js │ │ └── index.js │ ├── following │ │ ├── constants.js │ │ ├── following-actions │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── following-drag-layer │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── following-filter │ │ │ ├── index.js │ │ │ └── style.css │ │ ├── following-list │ │ │ ├── context.js │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── following-lists │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── following-load-all │ │ │ └── index.js │ │ ├── following-load-more-button │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── following-row │ │ │ ├── avatar │ │ │ │ ├── index.js │ │ │ │ └── styles.css │ │ │ ├── index.js │ │ │ ├── lists-tags.js │ │ │ └── styles.css │ │ ├── following-select-all │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── following-select-counter │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── following-sort │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── following-table │ │ │ ├── columns.js │ │ │ └── index.js │ │ ├── helpers.js │ │ └── index.js │ ├── list │ │ ├── list-accounts-list │ │ │ ├── index.js │ │ │ ├── row.js │ │ │ └── styles.css │ │ ├── list-add-selected-button │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── list-create-form │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── list-delete-button │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── list-edit-form │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── list-list │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── list-remove-selected-button │ │ │ ├── index.js │ │ │ └── styles.css │ │ └── list-row │ │ │ ├── add.js │ │ │ ├── disclosure-button │ │ │ ├── index.js │ │ │ └── styles.css │ │ │ ├── index.js │ │ │ ├── remove.js │ │ │ └── styles.css │ └── theme │ │ ├── constants.js │ │ ├── context.js │ │ ├── theme-border-radius-group │ │ ├── index.js │ │ └── styles.css │ │ ├── theme-density-group │ │ ├── index.js │ │ └── styles.css │ │ ├── theme-radio-group │ │ ├── index.js │ │ └── styles.css │ │ ├── theme-redacted-checkbox │ │ ├── index.js │ │ └── styles.css │ │ └── theme-update-root.js ├── index.js ├── lib │ ├── fetch.js │ ├── hooks │ │ ├── index.js │ │ └── use-debounce.js │ ├── mastodon │ │ └── index.js │ └── shuffle.js ├── logo.svg ├── reportWebVitals.js ├── router.js ├── routes │ ├── about │ │ ├── index.js │ │ └── styles.css │ ├── followers │ │ ├── index.js │ │ └── styles.css │ ├── following │ │ ├── index.js │ │ └── styles.css │ ├── help │ │ ├── index.js │ │ └── styles.css │ ├── lists │ │ ├── context.js │ │ ├── index.js │ │ └── styles.css │ ├── root │ │ ├── index.js │ │ ├── private.js │ │ ├── public.js │ │ ├── root.js │ │ └── styles.css │ └── settings │ │ ├── index.js │ │ ├── instances │ │ ├── add │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── index.js │ │ └── instances.js │ │ ├── settings.js │ │ └── styles.css ├── setupTests.js └── styles │ ├── fonts │ ├── Inter │ │ ├── Inter-Black.woff │ │ ├── Inter-Black.woff2 │ │ ├── Inter-BlackItalic.woff │ │ ├── Inter-BlackItalic.woff2 │ │ ├── Inter-Bold.woff │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-BoldItalic.woff │ │ ├── Inter-BoldItalic.woff2 │ │ ├── Inter-ExtraBold.woff │ │ ├── Inter-ExtraBold.woff2 │ │ ├── Inter-ExtraBoldItalic.woff │ │ ├── Inter-ExtraBoldItalic.woff2 │ │ ├── Inter-ExtraLight.woff │ │ ├── Inter-ExtraLight.woff2 │ │ ├── Inter-ExtraLightItalic.woff │ │ ├── Inter-ExtraLightItalic.woff2 │ │ ├── Inter-Italic.woff │ │ ├── Inter-Italic.woff2 │ │ ├── Inter-Light.woff │ │ ├── Inter-Light.woff2 │ │ ├── Inter-LightItalic.woff │ │ ├── Inter-LightItalic.woff2 │ │ ├── Inter-Medium.woff │ │ ├── Inter-Medium.woff2 │ │ ├── Inter-MediumItalic.woff │ │ ├── Inter-MediumItalic.woff2 │ │ ├── Inter-Regular.woff │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-SemiBoldItalic.woff │ │ ├── Inter-SemiBoldItalic.woff2 │ │ ├── Inter-Thin.woff │ │ ├── Inter-Thin.woff2 │ │ ├── Inter-ThinItalic.woff │ │ ├── Inter-ThinItalic.woff2 │ │ ├── Inter-italic.var.woff2 │ │ ├── Inter-roman.var.woff2 │ │ ├── Inter.var.woff2 │ │ └── styles.css │ ├── Piazzolla │ │ ├── Piazzolla-Black.woff2 │ │ ├── Piazzolla-BlackItalic.woff2 │ │ ├── Piazzolla-Bold.woff2 │ │ ├── Piazzolla-BoldItalic.woff2 │ │ ├── Piazzolla-ExtraBold.woff2 │ │ ├── Piazzolla-ExtraBoldItalic.woff2 │ │ ├── Piazzolla-ExtraLight.woff2 │ │ ├── Piazzolla-ExtraLightItalic.woff2 │ │ ├── Piazzolla-Italic.woff2 │ │ ├── Piazzolla-Italic[opsz,wght].woff2 │ │ ├── Piazzolla-Light.woff2 │ │ ├── Piazzolla-LightItalic.woff2 │ │ ├── Piazzolla-Medium.woff2 │ │ ├── Piazzolla-MediumItalic.woff2 │ │ ├── Piazzolla-Regular.woff2 │ │ ├── Piazzolla-SemiBold.woff2 │ │ ├── Piazzolla-SemiBoldItalic.woff2 │ │ ├── Piazzolla-Thin.woff2 │ │ ├── Piazzolla-ThinItalic.woff2 │ │ ├── Piazzolla[opsz,wght].woff2 │ │ └── styles.css │ └── Redacted │ │ ├── RedactedScript-Bold.woff2 │ │ ├── RedactedScript-Light.woff2 │ │ ├── RedactedScript-Regular.woff2 │ │ └── styles.css │ ├── global.css │ ├── layouts │ ├── cluster.css │ ├── frame.css │ ├── grid.css │ ├── page.css │ ├── splitter.css │ ├── stack.css │ └── styles.css │ ├── pattern-alt.png │ ├── pattern.png │ ├── reset.css │ ├── styles.css │ ├── tokens │ ├── border.css │ ├── colors.css │ ├── fonts.css │ ├── media-queries.css │ ├── sizes.css │ ├── spacing.css │ └── styles.css │ └── utilities │ ├── redacted.css │ ├── styles.css │ ├── visually-hidden.css │ └── wrapper.css └── yarn.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1.bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/.github/ISSUE_TEMPLATE/1.bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2.feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/.github/ISSUE_TEMPLATE/2.feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ["@commitlint/config-conventional"] }; 2 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 2 | -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/public/preview.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/public/robots.txt -------------------------------------------------------------------------------- /screenshots/federike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/screenshots/federike.png -------------------------------------------------------------------------------- /screenshots/forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/screenshots/forum.png -------------------------------------------------------------------------------- /screenshots/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/screenshots/light.png -------------------------------------------------------------------------------- /screenshots/merveilles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/screenshots/merveilles.png -------------------------------------------------------------------------------- /src/api/account/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/api/account/index.js -------------------------------------------------------------------------------- /src/api/account/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/api/account/mutations.js -------------------------------------------------------------------------------- /src/api/account/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/api/account/queries.js -------------------------------------------------------------------------------- /src/api/followers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/api/followers/index.js -------------------------------------------------------------------------------- /src/api/followers/mutations.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api/followers/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/api/followers/queries.js -------------------------------------------------------------------------------- /src/api/following/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/api/following/index.js -------------------------------------------------------------------------------- /src/api/following/mutations.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api/following/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/api/following/queries.js -------------------------------------------------------------------------------- /src/api/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/api/helpers.js -------------------------------------------------------------------------------- /src/api/lists/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/api/lists/index.js -------------------------------------------------------------------------------- /src/api/lists/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/api/lists/mutations.js -------------------------------------------------------------------------------- /src/api/lists/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/api/lists/queries.js -------------------------------------------------------------------------------- /src/components/errors/error-full-page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/errors/error-full-page/index.js -------------------------------------------------------------------------------- /src/components/errors/error-full-page/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/errors/error-full-page/styles.css -------------------------------------------------------------------------------- /src/components/errors/error-query-full-page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/errors/error-query-full-page/index.js -------------------------------------------------------------------------------- /src/components/errors/error-query-full-page/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/errors/error-query/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/errors/error-query/index.js -------------------------------------------------------------------------------- /src/components/errors/error-query/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/errors/error-query/too-many-requests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/errors/error-query/too-many-requests/index.js -------------------------------------------------------------------------------- /src/components/errors/error-query/too-many-requests/styles.css: -------------------------------------------------------------------------------- 1 | .c-error-too-many-requests { 2 | align-items: flex-end; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/errors/error-route-query-boundry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/errors/error-route-query-boundry.js -------------------------------------------------------------------------------- /src/components/errors/error-route/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/errors/error-route/index.js -------------------------------------------------------------------------------- /src/components/errors/error-route/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/header/index.js -------------------------------------------------------------------------------- /src/components/header/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/header/styles.css -------------------------------------------------------------------------------- /src/components/message/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/message/index.js -------------------------------------------------------------------------------- /src/components/message/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/message/styles.css -------------------------------------------------------------------------------- /src/components/spinner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/spinner/index.js -------------------------------------------------------------------------------- /src/components/spinner/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/spinner/styles.css -------------------------------------------------------------------------------- /src/components/svg-filter/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/svg-filter/filter.svg -------------------------------------------------------------------------------- /src/components/svg-filter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/svg-filter/index.js -------------------------------------------------------------------------------- /src/components/svg-filter/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/table/cell-bool/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/table/cell-bool/index.js -------------------------------------------------------------------------------- /src/components/table/cell-bool/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/table/index.js -------------------------------------------------------------------------------- /src/components/table/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/table/styles.css -------------------------------------------------------------------------------- /src/components/tag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/tag/index.js -------------------------------------------------------------------------------- /src/components/tag/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/tag/styles.css -------------------------------------------------------------------------------- /src/components/time/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/components/time/index.js -------------------------------------------------------------------------------- /src/containers/account/account-unfollow-confirm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/account/account-unfollow-confirm/index.js -------------------------------------------------------------------------------- /src/containers/account/account-unfollow-confirm/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/account/account-unfollow-confirm/styles.css -------------------------------------------------------------------------------- /src/containers/account/account-unfollow-row/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/account/account-unfollow-row/index.js -------------------------------------------------------------------------------- /src/containers/account/account-unfollow-row/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/account/account-unfollow-row/styles.css -------------------------------------------------------------------------------- /src/containers/follower/follower-load-all/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/follower/follower-load-all/index.js -------------------------------------------------------------------------------- /src/containers/follower/follower-load-next-page-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/follower/follower-load-next-page-button.js -------------------------------------------------------------------------------- /src/containers/follower/follower-table/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/follower/follower-table/columns.js -------------------------------------------------------------------------------- /src/containers/follower/follower-table/helpers.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/follower/follower-table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/follower/follower-table/index.js -------------------------------------------------------------------------------- /src/containers/follower/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/following/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/constants.js -------------------------------------------------------------------------------- /src/containers/following/following-actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-actions/index.js -------------------------------------------------------------------------------- /src/containers/following/following-actions/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-actions/styles.css -------------------------------------------------------------------------------- /src/containers/following/following-drag-layer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-drag-layer/index.js -------------------------------------------------------------------------------- /src/containers/following/following-drag-layer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-drag-layer/styles.css -------------------------------------------------------------------------------- /src/containers/following/following-filter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-filter/index.js -------------------------------------------------------------------------------- /src/containers/following/following-filter/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/following/following-list/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-list/context.js -------------------------------------------------------------------------------- /src/containers/following/following-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-list/index.js -------------------------------------------------------------------------------- /src/containers/following/following-list/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-list/styles.css -------------------------------------------------------------------------------- /src/containers/following/following-lists/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-lists/index.js -------------------------------------------------------------------------------- /src/containers/following/following-lists/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/following/following-load-all/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-load-all/index.js -------------------------------------------------------------------------------- /src/containers/following/following-load-more-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-load-more-button/index.js -------------------------------------------------------------------------------- /src/containers/following/following-load-more-button/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-load-more-button/styles.css -------------------------------------------------------------------------------- /src/containers/following/following-row/avatar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-row/avatar/index.js -------------------------------------------------------------------------------- /src/containers/following/following-row/avatar/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-row/avatar/styles.css -------------------------------------------------------------------------------- /src/containers/following/following-row/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-row/index.js -------------------------------------------------------------------------------- /src/containers/following/following-row/lists-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-row/lists-tags.js -------------------------------------------------------------------------------- /src/containers/following/following-row/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-row/styles.css -------------------------------------------------------------------------------- /src/containers/following/following-select-all/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-select-all/index.js -------------------------------------------------------------------------------- /src/containers/following/following-select-all/styles.css: -------------------------------------------------------------------------------- 1 | .c-following-select-all span { 2 | min-width: 11ch; 3 | display: block; 4 | } 5 | -------------------------------------------------------------------------------- /src/containers/following/following-select-counter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-select-counter/index.js -------------------------------------------------------------------------------- /src/containers/following/following-select-counter/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-select-counter/styles.css -------------------------------------------------------------------------------- /src/containers/following/following-sort/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-sort/index.js -------------------------------------------------------------------------------- /src/containers/following/following-sort/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-sort/styles.css -------------------------------------------------------------------------------- /src/containers/following/following-table/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-table/columns.js -------------------------------------------------------------------------------- /src/containers/following/following-table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/following-table/index.js -------------------------------------------------------------------------------- /src/containers/following/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/following/helpers.js -------------------------------------------------------------------------------- /src/containers/following/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/list/list-accounts-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-accounts-list/index.js -------------------------------------------------------------------------------- /src/containers/list/list-accounts-list/row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-accounts-list/row.js -------------------------------------------------------------------------------- /src/containers/list/list-accounts-list/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-accounts-list/styles.css -------------------------------------------------------------------------------- /src/containers/list/list-add-selected-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-add-selected-button/index.js -------------------------------------------------------------------------------- /src/containers/list/list-add-selected-button/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/list/list-create-form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-create-form/index.js -------------------------------------------------------------------------------- /src/containers/list/list-create-form/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-create-form/styles.css -------------------------------------------------------------------------------- /src/containers/list/list-delete-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-delete-button/index.js -------------------------------------------------------------------------------- /src/containers/list/list-delete-button/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-delete-button/styles.css -------------------------------------------------------------------------------- /src/containers/list/list-edit-form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-edit-form/index.js -------------------------------------------------------------------------------- /src/containers/list/list-edit-form/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-edit-form/styles.css -------------------------------------------------------------------------------- /src/containers/list/list-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-list/index.js -------------------------------------------------------------------------------- /src/containers/list/list-list/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-list/styles.css -------------------------------------------------------------------------------- /src/containers/list/list-remove-selected-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-remove-selected-button/index.js -------------------------------------------------------------------------------- /src/containers/list/list-remove-selected-button/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/list/list-row/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-row/add.js -------------------------------------------------------------------------------- /src/containers/list/list-row/disclosure-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-row/disclosure-button/index.js -------------------------------------------------------------------------------- /src/containers/list/list-row/disclosure-button/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-row/disclosure-button/styles.css -------------------------------------------------------------------------------- /src/containers/list/list-row/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-row/index.js -------------------------------------------------------------------------------- /src/containers/list/list-row/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-row/remove.js -------------------------------------------------------------------------------- /src/containers/list/list-row/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/list/list-row/styles.css -------------------------------------------------------------------------------- /src/containers/theme/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/theme/constants.js -------------------------------------------------------------------------------- /src/containers/theme/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/theme/context.js -------------------------------------------------------------------------------- /src/containers/theme/theme-border-radius-group/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/theme/theme-border-radius-group/index.js -------------------------------------------------------------------------------- /src/containers/theme/theme-border-radius-group/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/theme/theme-density-group/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/theme/theme-density-group/index.js -------------------------------------------------------------------------------- /src/containers/theme/theme-density-group/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/theme/theme-radio-group/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/theme/theme-radio-group/index.js -------------------------------------------------------------------------------- /src/containers/theme/theme-radio-group/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/theme/theme-radio-group/styles.css -------------------------------------------------------------------------------- /src/containers/theme/theme-redacted-checkbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/theme/theme-redacted-checkbox/index.js -------------------------------------------------------------------------------- /src/containers/theme/theme-redacted-checkbox/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/theme/theme-redacted-checkbox/styles.css -------------------------------------------------------------------------------- /src/containers/theme/theme-update-root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/containers/theme/theme-update-root.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/lib/fetch.js -------------------------------------------------------------------------------- /src/lib/hooks/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/hooks/use-debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/lib/hooks/use-debounce.js -------------------------------------------------------------------------------- /src/lib/mastodon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/lib/mastodon/index.js -------------------------------------------------------------------------------- /src/lib/shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/lib/shuffle.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/router.js -------------------------------------------------------------------------------- /src/routes/about/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/about/index.js -------------------------------------------------------------------------------- /src/routes/about/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/routes/followers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/followers/index.js -------------------------------------------------------------------------------- /src/routes/followers/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/followers/styles.css -------------------------------------------------------------------------------- /src/routes/following/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/following/index.js -------------------------------------------------------------------------------- /src/routes/following/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/following/styles.css -------------------------------------------------------------------------------- /src/routes/help/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/help/index.js -------------------------------------------------------------------------------- /src/routes/help/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/help/styles.css -------------------------------------------------------------------------------- /src/routes/lists/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/lists/context.js -------------------------------------------------------------------------------- /src/routes/lists/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/lists/index.js -------------------------------------------------------------------------------- /src/routes/lists/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/lists/styles.css -------------------------------------------------------------------------------- /src/routes/root/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/root/index.js -------------------------------------------------------------------------------- /src/routes/root/private.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/root/private.js -------------------------------------------------------------------------------- /src/routes/root/public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/root/public.js -------------------------------------------------------------------------------- /src/routes/root/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/root/root.js -------------------------------------------------------------------------------- /src/routes/root/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/root/styles.css -------------------------------------------------------------------------------- /src/routes/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/settings/index.js -------------------------------------------------------------------------------- /src/routes/settings/instances/add/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/settings/instances/add/index.js -------------------------------------------------------------------------------- /src/routes/settings/instances/add/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/settings/instances/add/styles.css -------------------------------------------------------------------------------- /src/routes/settings/instances/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/settings/instances/index.js -------------------------------------------------------------------------------- /src/routes/settings/instances/instances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/settings/instances/instances.js -------------------------------------------------------------------------------- /src/routes/settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/settings/settings.js -------------------------------------------------------------------------------- /src/routes/settings/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/routes/settings/styles.css -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Black.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Black.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Bold.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Italic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Italic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Light.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Light.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-LightItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Medium.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Medium.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Regular.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Regular.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-SemiBold.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Thin.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-Thin.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/Inter.var.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Inter/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Inter/styles.css -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-Black.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-BlackItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-Bold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-ExtraLight.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-Italic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-Italic[opsz,wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-Italic[opsz,wght].woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-Light.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-LightItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-Medium.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-Regular.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-SemiBold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-Thin.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla-ThinItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/Piazzolla[opsz,wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/Piazzolla[opsz,wght].woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Piazzolla/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Piazzolla/styles.css -------------------------------------------------------------------------------- /src/styles/fonts/Redacted/RedactedScript-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Redacted/RedactedScript-Bold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Redacted/RedactedScript-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Redacted/RedactedScript-Light.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Redacted/RedactedScript-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Redacted/RedactedScript-Regular.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Redacted/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/fonts/Redacted/styles.css -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/styles/layouts/cluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/layouts/cluster.css -------------------------------------------------------------------------------- /src/styles/layouts/frame.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/layouts/frame.css -------------------------------------------------------------------------------- /src/styles/layouts/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/layouts/grid.css -------------------------------------------------------------------------------- /src/styles/layouts/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/layouts/page.css -------------------------------------------------------------------------------- /src/styles/layouts/splitter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/layouts/splitter.css -------------------------------------------------------------------------------- /src/styles/layouts/stack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/layouts/stack.css -------------------------------------------------------------------------------- /src/styles/layouts/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/layouts/styles.css -------------------------------------------------------------------------------- /src/styles/pattern-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/pattern-alt.png -------------------------------------------------------------------------------- /src/styles/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/pattern.png -------------------------------------------------------------------------------- /src/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/reset.css -------------------------------------------------------------------------------- /src/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/styles.css -------------------------------------------------------------------------------- /src/styles/tokens/border.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/tokens/border.css -------------------------------------------------------------------------------- /src/styles/tokens/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/tokens/colors.css -------------------------------------------------------------------------------- /src/styles/tokens/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/tokens/fonts.css -------------------------------------------------------------------------------- /src/styles/tokens/media-queries.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/tokens/media-queries.css -------------------------------------------------------------------------------- /src/styles/tokens/sizes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/tokens/sizes.css -------------------------------------------------------------------------------- /src/styles/tokens/spacing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/tokens/spacing.css -------------------------------------------------------------------------------- /src/styles/tokens/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/tokens/styles.css -------------------------------------------------------------------------------- /src/styles/utilities/redacted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/utilities/redacted.css -------------------------------------------------------------------------------- /src/styles/utilities/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/utilities/styles.css -------------------------------------------------------------------------------- /src/styles/utilities/visually-hidden.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/utilities/visually-hidden.css -------------------------------------------------------------------------------- /src/styles/utilities/wrapper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/src/styles/utilities/wrapper.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afk-mario/federike/HEAD/yarn.lock --------------------------------------------------------------------------------