├── .github ├── actions │ └── run-via-ssh │ │ └── action.yml └── workflows │ ├── deploy.yml │ ├── licences.yml │ └── renew.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── LICENSE-CONTENT ├── README.md ├── app ├── api │ └── v1 │ │ └── index.ts ├── components │ ├── Link.tsx │ ├── Localised.tsx │ ├── Script.tsx │ ├── assets │ │ └── BrowserWireframe.tsx │ ├── common │ │ ├── A11y │ │ │ └── index.tsx │ │ ├── Footer │ │ │ ├── index.tsx │ │ │ ├── language.tsx │ │ │ ├── section.tsx │ │ │ ├── sitemap.tsx │ │ │ └── socials.tsx │ │ ├── Header │ │ │ ├── Drawer.tsx │ │ │ ├── Item.tsx │ │ │ ├── Items.tsx │ │ │ └── index.tsx │ │ ├── L10nBanner │ │ │ └── index.tsx │ │ └── Meta │ │ │ ├── OGMeta.tsx │ │ │ └── index.tsx │ ├── icons │ │ ├── ArrowRight.tsx │ │ ├── ChevronDown.tsx │ │ ├── ChevronRight.tsx │ │ ├── Close.tsx │ │ ├── Giving.tsx │ │ ├── Institution.tsx │ │ ├── JavaScript.tsx │ │ ├── Menu.tsx │ │ ├── News.tsx │ │ ├── Note.tsx │ │ ├── OpenInNew.tsx │ │ ├── PaymentCard.tsx │ │ ├── Search.tsx │ │ ├── animated │ │ │ └── ArrowRightAnimated.tsx │ │ ├── brands │ │ │ ├── Cargo.tsx │ │ │ ├── Discord.tsx │ │ │ ├── Mastodon.tsx │ │ │ ├── Matrix.tsx │ │ │ ├── NPM.tsx │ │ │ └── Twitter.tsx │ │ ├── cards │ │ │ ├── Amex.tsx │ │ │ ├── Discover.tsx │ │ │ ├── Mastercard.tsx │ │ │ └── Visa.tsx │ │ └── index.tsx │ ├── index.tsx │ ├── marketing │ │ ├── browser │ │ │ └── browser-landing-intro-block.tsx │ │ ├── index.tsx │ │ └── sponsors-block.tsx │ ├── pages │ │ ├── donate │ │ │ └── index.tsx │ │ └── third-party-licenses │ │ │ ├── Dependency.tsx │ │ │ ├── DependencyItem.tsx │ │ │ ├── Reference.tsx │ │ │ ├── Repository.tsx │ │ │ └── index.tsx │ └── ui │ │ ├── Aside │ │ └── index.tsx │ │ ├── Banner │ │ └── index.tsx │ │ ├── Button │ │ └── index.tsx │ │ ├── Card │ │ └── index.tsx │ │ ├── Checkbox │ │ └── index.tsx │ │ ├── ClientData.tsx │ │ ├── ConstrainedChildren.tsx │ │ ├── Field.tsx │ │ ├── HTMLComment.tsx │ │ ├── Hero │ │ └── index.tsx │ │ ├── ItemList │ │ └── index.tsx │ │ ├── Logo │ │ └── index.tsx │ │ ├── Menu │ │ ├── Item.tsx │ │ └── index.tsx │ │ ├── ProductLockup │ │ └── index.tsx │ │ ├── Radio │ │ └── index.tsx │ │ ├── Select │ │ └── index.tsx │ │ ├── Separator.tsx │ │ ├── Stack.tsx │ │ ├── Tabs │ │ └── index.tsx │ │ └── TextField │ │ └── index.tsx ├── flags.ts ├── l10n.ts ├── main.ts ├── og.ts ├── pages │ ├── 404.tsx │ ├── @layout.tsx │ ├── about │ │ └── third-party-licenses.tsx │ ├── contribute │ │ └── donate.tsx │ ├── index.tsx │ └── select-language.ts ├── redirects.ts ├── router.ts ├── server.ts ├── ssr.ts ├── types.d.ts └── utils │ ├── cache.ts │ ├── data.ts │ ├── error.ts │ ├── flags.ts │ ├── html.ts │ ├── icons.tsx │ ├── path.ts │ ├── router.ts │ └── ua.ts ├── data ├── donations.yml ├── footer.yml ├── header.yml └── sponsors.yml ├── docker-compose.yml ├── docker ├── config │ ├── compression.conf │ ├── nginx.conf │ ├── sites │ │ └── www.conf │ └── ssl.conf ├── create-stub-certificates.sh ├── generate-certificates.sh ├── nginx-entrypoint.sh ├── nginx.dockerfile └── www.dockerfile ├── generated └── generated.tsx ├── jest.config.js ├── l10n ├── en-GB │ ├── a11y.ftl │ ├── brand.ftl │ ├── domain-migration.ftl │ ├── errors │ │ └── 404.ftl │ ├── footer.ftl │ ├── header.ftl │ ├── marketing │ │ ├── browser │ │ │ └── LandingIntroBlock.ftl │ │ └── sponsors-block.ftl │ ├── meta.ftl │ └── pages │ │ ├── about │ │ └── third-party-licenses.ftl │ │ ├── donate.ftl │ │ └── index.ftl ├── en-US │ ├── README.md │ └── overrides.ftl └── es-ES │ ├── a11y.ftl │ ├── brand.ftl │ ├── domain-migration.ftl │ ├── errors │ └── 404.ftl │ ├── footer.ftl │ ├── header.ftl │ ├── marketing │ ├── browser │ │ └── LandingIntroBlock.ftl │ └── sponsors-block.ftl │ ├── meta.ftl │ └── pages │ ├── about │ └── third-party-licenses.ftl │ ├── donate.ftl │ └── index.ftl ├── package.json ├── public ├── .well-known │ ├── keys │ │ ├── dothq_code_signing.asc │ │ └── dothq_general.asc │ └── security.txt ├── errors │ └── 500.html ├── favicon.ico ├── favicon.png ├── favicon.svg ├── media │ ├── 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.var.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-roman.var.woff2 │ │ │ └── Inter.var.woff2 │ │ └── satoshi │ │ │ ├── Satoshi-Black.woff │ │ │ ├── Satoshi-Black.woff2 │ │ │ ├── Satoshi-BlackItalic.woff │ │ │ ├── Satoshi-BlackItalic.woff2 │ │ │ ├── Satoshi-Bold.woff │ │ │ ├── Satoshi-Bold.woff2 │ │ │ ├── Satoshi-BoldItalic.woff │ │ │ ├── Satoshi-BoldItalic.woff2 │ │ │ ├── Satoshi-Italic.var.woff │ │ │ ├── Satoshi-Italic.var.woff2 │ │ │ ├── Satoshi-Italic.woff │ │ │ ├── Satoshi-Italic.woff2 │ │ │ ├── Satoshi-Light.woff │ │ │ ├── Satoshi-Light.woff2 │ │ │ ├── Satoshi-LightItalic.woff │ │ │ ├── Satoshi-LightItalic.woff2 │ │ │ ├── Satoshi-Medium.woff │ │ │ ├── Satoshi-Medium.woff2 │ │ │ ├── Satoshi-MediumItalic.woff │ │ │ ├── Satoshi-MediumItalic.woff2 │ │ │ ├── Satoshi-Regular.woff │ │ │ ├── Satoshi-Regular.woff2 │ │ │ ├── Satoshi.var.woff │ │ │ └── Satoshi.var.woff2 │ ├── icons │ │ ├── 114x114.png │ │ ├── 120x120.png │ │ ├── 128x128.png │ │ ├── 144x144.png │ │ ├── 150x150.png │ │ ├── 152x152.png │ │ ├── 160x160.png │ │ ├── 16x16.png │ │ ├── 192x192.png │ │ ├── 196x196.png │ │ ├── 256x256.png │ │ ├── 310x150.png │ │ ├── 310x310.png │ │ ├── 32x32.png │ │ ├── 36x36.png │ │ ├── 384x384.png │ │ ├── 48x48.png │ │ ├── 512x512.png │ │ ├── 57x57.png │ │ ├── 70x70.png │ │ ├── 72x72.png │ │ ├── 76x76.png │ │ ├── 96x96.png │ │ └── ui │ │ │ └── lock.svg │ ├── images │ │ ├── dothq_colour_space.jpg │ │ ├── logo.jpg │ │ ├── logo@small.jpg │ │ ├── og │ │ │ ├── donate.jpg │ │ │ ├── logo.jpg │ │ │ └── logo_with_browser_wireframe.jpg │ │ └── sponsors │ │ │ └── tuta_logo.svg │ └── js │ │ ├── donations │ │ └── index.js │ │ ├── flags.js │ │ └── scalar.js └── robots.txt ├── scripts ├── build.js ├── inject-vars.js ├── l10n.js ├── licences.js ├── rebuild_docker.sh └── renew_certificates_docker.sh ├── tests ├── renders-landing-page.test.ts └── utils.ts ├── tsconfig.json ├── ui ├── blocks │ ├── browser-landing-intro-block.scss │ └── sponsors-block.scss ├── foundation │ ├── components │ │ ├── aside │ │ │ └── index.scss │ │ ├── banner │ │ │ ├── helpers.scss │ │ │ └── index.scss │ │ ├── browser-wireframe.scss │ │ ├── button │ │ │ ├── helpers.scss │ │ │ └── index.scss │ │ ├── card │ │ │ └── index.scss │ │ ├── code │ │ │ └── index.scss │ │ ├── domain-migration.scss │ │ ├── error.scss │ │ ├── flex │ │ │ ├── helpers.scss │ │ │ └── index.scss │ │ ├── footer │ │ │ ├── index.scss │ │ │ ├── items.scss │ │ │ ├── logo.scss │ │ │ └── subfooter.scss │ │ ├── form │ │ │ ├── helpers.scss │ │ │ ├── index.scss │ │ │ └── input │ │ │ │ └── index.scss │ │ ├── header │ │ │ ├── a11y.scss │ │ │ ├── drawer.scss │ │ │ ├── index.scss │ │ │ ├── items.scss │ │ │ ├── logo.scss │ │ │ └── menu.scss │ │ ├── hero │ │ │ ├── helpers.scss │ │ │ └── index.scss │ │ ├── icons.scss │ │ ├── itemlist │ │ │ └── index.scss │ │ ├── logo.scss │ │ ├── main.scss │ │ ├── menu │ │ │ ├── helpers.scss │ │ │ ├── index.scss │ │ │ └── item.scss │ │ ├── tabs │ │ │ └── index.scss │ │ └── typography.scss │ ├── scalar.scss │ └── utils │ │ ├── a11y.scss │ │ ├── fonts.scss │ │ └── reset.scss └── pages │ ├── donate.scss │ └── third-party-licenses.scss └── yarn.lock /.github/actions/run-via-ssh/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/.github/actions/run-via-ssh/action.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/licences.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/.github/workflows/licences.yml -------------------------------------------------------------------------------- /.github/workflows/renew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/.github/workflows/renew.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CONTENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/LICENSE-CONTENT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/README.md -------------------------------------------------------------------------------- /app/api/v1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/api/v1/index.ts -------------------------------------------------------------------------------- /app/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/Link.tsx -------------------------------------------------------------------------------- /app/components/Localised.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/Localised.tsx -------------------------------------------------------------------------------- /app/components/Script.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/Script.tsx -------------------------------------------------------------------------------- /app/components/assets/BrowserWireframe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/assets/BrowserWireframe.tsx -------------------------------------------------------------------------------- /app/components/common/A11y/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/common/A11y/index.tsx -------------------------------------------------------------------------------- /app/components/common/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/common/Footer/index.tsx -------------------------------------------------------------------------------- /app/components/common/Footer/language.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/common/Footer/language.tsx -------------------------------------------------------------------------------- /app/components/common/Footer/section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/common/Footer/section.tsx -------------------------------------------------------------------------------- /app/components/common/Footer/sitemap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/common/Footer/sitemap.tsx -------------------------------------------------------------------------------- /app/components/common/Footer/socials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/common/Footer/socials.tsx -------------------------------------------------------------------------------- /app/components/common/Header/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/common/Header/Drawer.tsx -------------------------------------------------------------------------------- /app/components/common/Header/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/common/Header/Item.tsx -------------------------------------------------------------------------------- /app/components/common/Header/Items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/common/Header/Items.tsx -------------------------------------------------------------------------------- /app/components/common/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/common/Header/index.tsx -------------------------------------------------------------------------------- /app/components/common/L10nBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/common/L10nBanner/index.tsx -------------------------------------------------------------------------------- /app/components/common/Meta/OGMeta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/common/Meta/OGMeta.tsx -------------------------------------------------------------------------------- /app/components/common/Meta/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/common/Meta/index.tsx -------------------------------------------------------------------------------- /app/components/icons/ArrowRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/ArrowRight.tsx -------------------------------------------------------------------------------- /app/components/icons/ChevronDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/ChevronDown.tsx -------------------------------------------------------------------------------- /app/components/icons/ChevronRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/ChevronRight.tsx -------------------------------------------------------------------------------- /app/components/icons/Close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/Close.tsx -------------------------------------------------------------------------------- /app/components/icons/Giving.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/Giving.tsx -------------------------------------------------------------------------------- /app/components/icons/Institution.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/Institution.tsx -------------------------------------------------------------------------------- /app/components/icons/JavaScript.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/JavaScript.tsx -------------------------------------------------------------------------------- /app/components/icons/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/Menu.tsx -------------------------------------------------------------------------------- /app/components/icons/News.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/News.tsx -------------------------------------------------------------------------------- /app/components/icons/Note.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/Note.tsx -------------------------------------------------------------------------------- /app/components/icons/OpenInNew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/OpenInNew.tsx -------------------------------------------------------------------------------- /app/components/icons/PaymentCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/PaymentCard.tsx -------------------------------------------------------------------------------- /app/components/icons/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/Search.tsx -------------------------------------------------------------------------------- /app/components/icons/animated/ArrowRightAnimated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/animated/ArrowRightAnimated.tsx -------------------------------------------------------------------------------- /app/components/icons/brands/Cargo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/brands/Cargo.tsx -------------------------------------------------------------------------------- /app/components/icons/brands/Discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/brands/Discord.tsx -------------------------------------------------------------------------------- /app/components/icons/brands/Mastodon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/brands/Mastodon.tsx -------------------------------------------------------------------------------- /app/components/icons/brands/Matrix.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/brands/Matrix.tsx -------------------------------------------------------------------------------- /app/components/icons/brands/NPM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/brands/NPM.tsx -------------------------------------------------------------------------------- /app/components/icons/brands/Twitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/brands/Twitter.tsx -------------------------------------------------------------------------------- /app/components/icons/cards/Amex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/cards/Amex.tsx -------------------------------------------------------------------------------- /app/components/icons/cards/Discover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/cards/Discover.tsx -------------------------------------------------------------------------------- /app/components/icons/cards/Mastercard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/cards/Mastercard.tsx -------------------------------------------------------------------------------- /app/components/icons/cards/Visa.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/cards/Visa.tsx -------------------------------------------------------------------------------- /app/components/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/icons/index.tsx -------------------------------------------------------------------------------- /app/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/index.tsx -------------------------------------------------------------------------------- /app/components/marketing/browser/browser-landing-intro-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/marketing/browser/browser-landing-intro-block.tsx -------------------------------------------------------------------------------- /app/components/marketing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/marketing/index.tsx -------------------------------------------------------------------------------- /app/components/marketing/sponsors-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/marketing/sponsors-block.tsx -------------------------------------------------------------------------------- /app/components/pages/donate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/pages/donate/index.tsx -------------------------------------------------------------------------------- /app/components/pages/third-party-licenses/Dependency.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/pages/third-party-licenses/Dependency.tsx -------------------------------------------------------------------------------- /app/components/pages/third-party-licenses/DependencyItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/pages/third-party-licenses/DependencyItem.tsx -------------------------------------------------------------------------------- /app/components/pages/third-party-licenses/Reference.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/pages/third-party-licenses/Reference.tsx -------------------------------------------------------------------------------- /app/components/pages/third-party-licenses/Repository.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/pages/third-party-licenses/Repository.tsx -------------------------------------------------------------------------------- /app/components/pages/third-party-licenses/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/pages/third-party-licenses/index.tsx -------------------------------------------------------------------------------- /app/components/ui/Aside/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Aside/index.tsx -------------------------------------------------------------------------------- /app/components/ui/Banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Banner/index.tsx -------------------------------------------------------------------------------- /app/components/ui/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Button/index.tsx -------------------------------------------------------------------------------- /app/components/ui/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Card/index.tsx -------------------------------------------------------------------------------- /app/components/ui/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Checkbox/index.tsx -------------------------------------------------------------------------------- /app/components/ui/ClientData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/ClientData.tsx -------------------------------------------------------------------------------- /app/components/ui/ConstrainedChildren.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/ConstrainedChildren.tsx -------------------------------------------------------------------------------- /app/components/ui/Field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Field.tsx -------------------------------------------------------------------------------- /app/components/ui/HTMLComment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/HTMLComment.tsx -------------------------------------------------------------------------------- /app/components/ui/Hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Hero/index.tsx -------------------------------------------------------------------------------- /app/components/ui/ItemList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/ItemList/index.tsx -------------------------------------------------------------------------------- /app/components/ui/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Logo/index.tsx -------------------------------------------------------------------------------- /app/components/ui/Menu/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Menu/Item.tsx -------------------------------------------------------------------------------- /app/components/ui/Menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Menu/index.tsx -------------------------------------------------------------------------------- /app/components/ui/ProductLockup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/ProductLockup/index.tsx -------------------------------------------------------------------------------- /app/components/ui/Radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Radio/index.tsx -------------------------------------------------------------------------------- /app/components/ui/Select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Select/index.tsx -------------------------------------------------------------------------------- /app/components/ui/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Separator.tsx -------------------------------------------------------------------------------- /app/components/ui/Stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Stack.tsx -------------------------------------------------------------------------------- /app/components/ui/Tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/Tabs/index.tsx -------------------------------------------------------------------------------- /app/components/ui/TextField/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/components/ui/TextField/index.tsx -------------------------------------------------------------------------------- /app/flags.ts: -------------------------------------------------------------------------------- 1 | export const flags = { 2 | base: 0, 3 | new_donations_experience: 1 4 | }; 5 | -------------------------------------------------------------------------------- /app/l10n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/l10n.ts -------------------------------------------------------------------------------- /app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/main.ts -------------------------------------------------------------------------------- /app/og.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/og.ts -------------------------------------------------------------------------------- /app/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/pages/404.tsx -------------------------------------------------------------------------------- /app/pages/@layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/pages/@layout.tsx -------------------------------------------------------------------------------- /app/pages/about/third-party-licenses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/pages/about/third-party-licenses.tsx -------------------------------------------------------------------------------- /app/pages/contribute/donate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/pages/contribute/donate.tsx -------------------------------------------------------------------------------- /app/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/pages/index.tsx -------------------------------------------------------------------------------- /app/pages/select-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/pages/select-language.ts -------------------------------------------------------------------------------- /app/redirects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/redirects.ts -------------------------------------------------------------------------------- /app/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/router.ts -------------------------------------------------------------------------------- /app/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/server.ts -------------------------------------------------------------------------------- /app/ssr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/ssr.ts -------------------------------------------------------------------------------- /app/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/types.d.ts -------------------------------------------------------------------------------- /app/utils/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/utils/cache.ts -------------------------------------------------------------------------------- /app/utils/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/utils/data.ts -------------------------------------------------------------------------------- /app/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/utils/error.ts -------------------------------------------------------------------------------- /app/utils/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/utils/flags.ts -------------------------------------------------------------------------------- /app/utils/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/utils/html.ts -------------------------------------------------------------------------------- /app/utils/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/utils/icons.tsx -------------------------------------------------------------------------------- /app/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/utils/path.ts -------------------------------------------------------------------------------- /app/utils/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/utils/router.ts -------------------------------------------------------------------------------- /app/utils/ua.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/app/utils/ua.ts -------------------------------------------------------------------------------- /data/donations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/data/donations.yml -------------------------------------------------------------------------------- /data/footer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/data/footer.yml -------------------------------------------------------------------------------- /data/header.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/data/header.yml -------------------------------------------------------------------------------- /data/sponsors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/data/sponsors.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/config/compression.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/docker/config/compression.conf -------------------------------------------------------------------------------- /docker/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/docker/config/nginx.conf -------------------------------------------------------------------------------- /docker/config/sites/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/docker/config/sites/www.conf -------------------------------------------------------------------------------- /docker/config/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/docker/config/ssl.conf -------------------------------------------------------------------------------- /docker/create-stub-certificates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/docker/create-stub-certificates.sh -------------------------------------------------------------------------------- /docker/generate-certificates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/docker/generate-certificates.sh -------------------------------------------------------------------------------- /docker/nginx-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/docker/nginx-entrypoint.sh -------------------------------------------------------------------------------- /docker/nginx.dockerfile: -------------------------------------------------------------------------------- 1 | FROM nginx:alpine 2 | 3 | RUN curl https://ssl-config.mozilla.org/ffdhe2048.txt > /etc/ssl/dhparam.pem 4 | -------------------------------------------------------------------------------- /docker/www.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/docker/www.dockerfile -------------------------------------------------------------------------------- /generated/generated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/generated/generated.tsx -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/jest.config.js -------------------------------------------------------------------------------- /l10n/en-GB/a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-GB/a11y.ftl -------------------------------------------------------------------------------- /l10n/en-GB/brand.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-GB/brand.ftl -------------------------------------------------------------------------------- /l10n/en-GB/domain-migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-GB/domain-migration.ftl -------------------------------------------------------------------------------- /l10n/en-GB/errors/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-GB/errors/404.ftl -------------------------------------------------------------------------------- /l10n/en-GB/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-GB/footer.ftl -------------------------------------------------------------------------------- /l10n/en-GB/header.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-GB/header.ftl -------------------------------------------------------------------------------- /l10n/en-GB/marketing/browser/LandingIntroBlock.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-GB/marketing/browser/LandingIntroBlock.ftl -------------------------------------------------------------------------------- /l10n/en-GB/marketing/sponsors-block.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-GB/marketing/sponsors-block.ftl -------------------------------------------------------------------------------- /l10n/en-GB/meta.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-GB/meta.ftl -------------------------------------------------------------------------------- /l10n/en-GB/pages/about/third-party-licenses.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-GB/pages/about/third-party-licenses.ftl -------------------------------------------------------------------------------- /l10n/en-GB/pages/donate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-GB/pages/donate.ftl -------------------------------------------------------------------------------- /l10n/en-GB/pages/index.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-GB/pages/index.ftl -------------------------------------------------------------------------------- /l10n/en-US/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-US/README.md -------------------------------------------------------------------------------- /l10n/en-US/overrides.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/en-US/overrides.ftl -------------------------------------------------------------------------------- /l10n/es-ES/a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/es-ES/a11y.ftl -------------------------------------------------------------------------------- /l10n/es-ES/brand.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/es-ES/brand.ftl -------------------------------------------------------------------------------- /l10n/es-ES/domain-migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/es-ES/domain-migration.ftl -------------------------------------------------------------------------------- /l10n/es-ES/errors/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/es-ES/errors/404.ftl -------------------------------------------------------------------------------- /l10n/es-ES/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/es-ES/footer.ftl -------------------------------------------------------------------------------- /l10n/es-ES/header.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/es-ES/header.ftl -------------------------------------------------------------------------------- /l10n/es-ES/marketing/browser/LandingIntroBlock.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/es-ES/marketing/browser/LandingIntroBlock.ftl -------------------------------------------------------------------------------- /l10n/es-ES/marketing/sponsors-block.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/es-ES/marketing/sponsors-block.ftl -------------------------------------------------------------------------------- /l10n/es-ES/meta.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/es-ES/meta.ftl -------------------------------------------------------------------------------- /l10n/es-ES/pages/about/third-party-licenses.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/es-ES/pages/about/third-party-licenses.ftl -------------------------------------------------------------------------------- /l10n/es-ES/pages/donate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/es-ES/pages/donate.ftl -------------------------------------------------------------------------------- /l10n/es-ES/pages/index.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/l10n/es-ES/pages/index.ftl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/package.json -------------------------------------------------------------------------------- /public/.well-known/keys/dothq_code_signing.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/.well-known/keys/dothq_code_signing.asc -------------------------------------------------------------------------------- /public/.well-known/keys/dothq_general.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/.well-known/keys/dothq_general.asc -------------------------------------------------------------------------------- /public/.well-known/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/.well-known/security.txt -------------------------------------------------------------------------------- /public/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/errors/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Black.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Black.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Bold.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Italic.var.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Italic.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Italic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Light.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Light.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-LightItalic.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Medium.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Medium.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Regular.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Regular.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-SemiBold.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Thin.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-Thin.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /public/media/fonts/inter/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/inter/Inter.var.woff2 -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Black.woff -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Black.woff2 -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-BlackItalic.woff -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-BlackItalic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Bold.woff -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Bold.woff2 -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-BoldItalic.woff -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Italic.var.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Italic.var.woff -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Italic.var.woff2 -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Italic.woff -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Italic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Light.woff -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Light.woff2 -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-LightItalic.woff -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-LightItalic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Medium.woff -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Medium.woff2 -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-MediumItalic.woff -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-MediumItalic.woff2 -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Regular.woff -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi-Regular.woff2 -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi.var.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi.var.woff -------------------------------------------------------------------------------- /public/media/fonts/satoshi/Satoshi.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/fonts/satoshi/Satoshi.var.woff2 -------------------------------------------------------------------------------- /public/media/icons/114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/114x114.png -------------------------------------------------------------------------------- /public/media/icons/120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/120x120.png -------------------------------------------------------------------------------- /public/media/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/128x128.png -------------------------------------------------------------------------------- /public/media/icons/144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/144x144.png -------------------------------------------------------------------------------- /public/media/icons/150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/150x150.png -------------------------------------------------------------------------------- /public/media/icons/152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/152x152.png -------------------------------------------------------------------------------- /public/media/icons/160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/160x160.png -------------------------------------------------------------------------------- /public/media/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/16x16.png -------------------------------------------------------------------------------- /public/media/icons/192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/192x192.png -------------------------------------------------------------------------------- /public/media/icons/196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/196x196.png -------------------------------------------------------------------------------- /public/media/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/256x256.png -------------------------------------------------------------------------------- /public/media/icons/310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/310x150.png -------------------------------------------------------------------------------- /public/media/icons/310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/310x310.png -------------------------------------------------------------------------------- /public/media/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/32x32.png -------------------------------------------------------------------------------- /public/media/icons/36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/36x36.png -------------------------------------------------------------------------------- /public/media/icons/384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/384x384.png -------------------------------------------------------------------------------- /public/media/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/48x48.png -------------------------------------------------------------------------------- /public/media/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/512x512.png -------------------------------------------------------------------------------- /public/media/icons/57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/57x57.png -------------------------------------------------------------------------------- /public/media/icons/70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/70x70.png -------------------------------------------------------------------------------- /public/media/icons/72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/72x72.png -------------------------------------------------------------------------------- /public/media/icons/76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/76x76.png -------------------------------------------------------------------------------- /public/media/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/96x96.png -------------------------------------------------------------------------------- /public/media/icons/ui/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/icons/ui/lock.svg -------------------------------------------------------------------------------- /public/media/images/dothq_colour_space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/images/dothq_colour_space.jpg -------------------------------------------------------------------------------- /public/media/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/images/logo.jpg -------------------------------------------------------------------------------- /public/media/images/logo@small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/images/logo@small.jpg -------------------------------------------------------------------------------- /public/media/images/og/donate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/images/og/donate.jpg -------------------------------------------------------------------------------- /public/media/images/og/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/images/og/logo.jpg -------------------------------------------------------------------------------- /public/media/images/og/logo_with_browser_wireframe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/images/og/logo_with_browser_wireframe.jpg -------------------------------------------------------------------------------- /public/media/images/sponsors/tuta_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/images/sponsors/tuta_logo.svg -------------------------------------------------------------------------------- /public/media/js/donations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/js/donations/index.js -------------------------------------------------------------------------------- /public/media/js/flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/js/flags.js -------------------------------------------------------------------------------- /public/media/js/scalar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/public/media/js/scalar.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/inject-vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/scripts/inject-vars.js -------------------------------------------------------------------------------- /scripts/l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/scripts/l10n.js -------------------------------------------------------------------------------- /scripts/licences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/scripts/licences.js -------------------------------------------------------------------------------- /scripts/rebuild_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/scripts/rebuild_docker.sh -------------------------------------------------------------------------------- /scripts/renew_certificates_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/scripts/renew_certificates_docker.sh -------------------------------------------------------------------------------- /tests/renders-landing-page.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/tests/renders-landing-page.test.ts -------------------------------------------------------------------------------- /tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/tests/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/tsconfig.json -------------------------------------------------------------------------------- /ui/blocks/browser-landing-intro-block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/blocks/browser-landing-intro-block.scss -------------------------------------------------------------------------------- /ui/blocks/sponsors-block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/blocks/sponsors-block.scss -------------------------------------------------------------------------------- /ui/foundation/components/aside/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/aside/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/banner/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/banner/helpers.scss -------------------------------------------------------------------------------- /ui/foundation/components/banner/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/banner/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/browser-wireframe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/browser-wireframe.scss -------------------------------------------------------------------------------- /ui/foundation/components/button/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/button/helpers.scss -------------------------------------------------------------------------------- /ui/foundation/components/button/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/button/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/card/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/card/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/code/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/code/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/domain-migration.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/domain-migration.scss -------------------------------------------------------------------------------- /ui/foundation/components/error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/error.scss -------------------------------------------------------------------------------- /ui/foundation/components/flex/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/flex/helpers.scss -------------------------------------------------------------------------------- /ui/foundation/components/flex/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/flex/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/footer/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/footer/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/footer/items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/footer/items.scss -------------------------------------------------------------------------------- /ui/foundation/components/footer/logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/footer/logo.scss -------------------------------------------------------------------------------- /ui/foundation/components/footer/subfooter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/footer/subfooter.scss -------------------------------------------------------------------------------- /ui/foundation/components/form/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/form/helpers.scss -------------------------------------------------------------------------------- /ui/foundation/components/form/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/form/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/form/input/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/form/input/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/header/a11y.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/header/a11y.scss -------------------------------------------------------------------------------- /ui/foundation/components/header/drawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/header/drawer.scss -------------------------------------------------------------------------------- /ui/foundation/components/header/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/header/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/header/items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/header/items.scss -------------------------------------------------------------------------------- /ui/foundation/components/header/logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/header/logo.scss -------------------------------------------------------------------------------- /ui/foundation/components/header/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/header/menu.scss -------------------------------------------------------------------------------- /ui/foundation/components/hero/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/hero/helpers.scss -------------------------------------------------------------------------------- /ui/foundation/components/hero/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/hero/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/icons.scss -------------------------------------------------------------------------------- /ui/foundation/components/itemlist/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/itemlist/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/logo.scss -------------------------------------------------------------------------------- /ui/foundation/components/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/main.scss -------------------------------------------------------------------------------- /ui/foundation/components/menu/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/menu/helpers.scss -------------------------------------------------------------------------------- /ui/foundation/components/menu/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/menu/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/menu/item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/menu/item.scss -------------------------------------------------------------------------------- /ui/foundation/components/tabs/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/tabs/index.scss -------------------------------------------------------------------------------- /ui/foundation/components/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/components/typography.scss -------------------------------------------------------------------------------- /ui/foundation/scalar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/scalar.scss -------------------------------------------------------------------------------- /ui/foundation/utils/a11y.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/utils/a11y.scss -------------------------------------------------------------------------------- /ui/foundation/utils/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/utils/fonts.scss -------------------------------------------------------------------------------- /ui/foundation/utils/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/foundation/utils/reset.scss -------------------------------------------------------------------------------- /ui/pages/donate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/pages/donate.scss -------------------------------------------------------------------------------- /ui/pages/third-party-licenses.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/ui/pages/third-party-licenses.scss -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dothq/scalar/HEAD/yarn.lock --------------------------------------------------------------------------------