├── .editorconfig ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── astro.config.mjs ├── eslint.config.js ├── nano-staged.json ├── package.json ├── pnpm-lock.yaml ├── public ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.svg ├── fonts │ ├── montserrat-700.woff │ ├── montserrat-700.woff2 │ ├── montserrat.woff │ ├── montserrat.woff2 │ └── segmented.woff2 └── robots.txt ├── simple-git-hooks.json ├── src ├── components │ ├── Author.astro │ ├── AuthorTitle.astro │ ├── Contributors.astro │ ├── Footer.astro │ ├── Header.astro │ ├── Recipe.astro │ ├── RecipeCard.astro │ ├── RecipeProperties.astro │ ├── Section.astro │ └── Timer.astro ├── content │ ├── authors.json │ ├── config.ts │ └── recipes │ │ ├── en │ │ ├── aeropress │ │ │ ├── coffeecollective.md │ │ │ ├── locus-01.md │ │ │ ├── tastycoffee.md │ │ │ └── theweldercatherine-01.md │ │ ├── cezve │ │ │ ├── theweldercatherine-01.md │ │ │ └── theweldercatherine-02.md │ │ ├── chemex │ │ │ └── locus-01.md │ │ ├── coldbrew │ │ │ ├── ninetyplus-01.md │ │ │ └── tastycoffee.md │ │ ├── pourover │ │ │ ├── aeroplan-01.md │ │ │ ├── barn-01.md │ │ │ ├── bluebottle-01.md │ │ │ ├── heart-01.md │ │ │ ├── lacabra-01.md │ │ │ ├── locus-01.md │ │ │ ├── ninetyplus-01.md │ │ │ ├── ninetyplus-02.md │ │ │ ├── nomand-01.md │ │ │ ├── nomand-02.md │ │ │ ├── silkydrum-01.md │ │ │ ├── submarine-01.md │ │ │ ├── submarine-02.md │ │ │ ├── submarine-03.md │ │ │ ├── theweldercatherine-01.md │ │ │ └── theweldercatherine-02.md │ │ └── summer │ │ │ └── bluebottle-01.md │ │ └── ru │ │ ├── aeropress │ │ ├── coffeecollective.md │ │ ├── locus-01.md │ │ ├── tastycoffee.md │ │ └── theweldercatherine-01.md │ │ ├── cezve │ │ ├── theweldercatherine-01.md │ │ └── theweldercatherine-02.md │ │ ├── chemex │ │ └── locus-01.md │ │ ├── coldbrew │ │ ├── ninetyplus-01.md │ │ └── tastycoffee.md │ │ ├── pourover │ │ ├── aeroplan-01.md │ │ ├── barn-01.md │ │ ├── bluebottle-01.md │ │ ├── heart-01.md │ │ ├── lacabra-01.md │ │ ├── locus-01.md │ │ ├── ninetyplus-01.md │ │ ├── ninetyplus-02.md │ │ ├── nomand-01.md │ │ ├── nomand-02.md │ │ ├── silkydrum-01.md │ │ ├── submarine-01.md │ │ ├── submarine-02.md │ │ ├── submarine-03.md │ │ ├── theweldercatherine-01.md │ │ └── theweldercatherine-02.md │ │ └── summer │ │ └── bluebottle-01.md ├── env.d.ts ├── i18n │ ├── locales │ │ ├── about │ │ │ ├── en.ts │ │ │ └── ru.json │ │ ├── common │ │ │ ├── en.ts │ │ │ └── ru.json │ │ ├── methods │ │ │ ├── en.ts │ │ │ └── ru.json │ │ ├── not-found │ │ │ ├── en.ts │ │ │ └── ru.json │ │ ├── recipe │ │ │ ├── en.ts │ │ │ └── ru.json │ │ └── settings │ │ │ ├── en.ts │ │ │ └── ru.json │ └── utils.ts ├── icons │ ├── aeroplan-coffee.svg │ ├── blue-bottle.svg │ ├── chevron-down.svg │ ├── coffee-collective.svg │ ├── coffeeWeight.svg │ ├── heart-roasters.svg │ ├── ice.svg │ ├── locus.svg │ ├── ninety-plus.svg │ ├── settings.svg │ ├── silky-drum.svg │ ├── source-link.svg │ ├── submarine.svg │ ├── tasty-coffee.svg │ ├── temperature.svg │ ├── the-barn.svg │ ├── the-welder.svg │ ├── time.svg │ ├── torrefacto.svg │ └── water.svg ├── layouts │ └── Layout.astro ├── pages │ ├── 404.astro │ ├── [lang] │ │ ├── about.astro │ │ ├── authors.astro │ │ ├── index.astro │ │ ├── recipes │ │ │ ├── [method].astro │ │ │ └── [method] │ │ │ │ └── [name].astro │ │ └── settings.astro │ └── index.astro ├── styles │ ├── box-shadow.css │ ├── colors.css │ ├── common.css │ ├── fonts.css │ └── main.css └── utils │ └── index.ts ├── tsconfig.json └── vercel.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/eslint.config.js -------------------------------------------------------------------------------- /nano-staged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/nano-staged.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/fonts/montserrat-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/public/fonts/montserrat-700.woff -------------------------------------------------------------------------------- /public/fonts/montserrat-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/public/fonts/montserrat-700.woff2 -------------------------------------------------------------------------------- /public/fonts/montserrat.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/public/fonts/montserrat.woff -------------------------------------------------------------------------------- /public/fonts/montserrat.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/public/fonts/montserrat.woff2 -------------------------------------------------------------------------------- /public/fonts/segmented.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/public/fonts/segmented.woff2 -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/public/robots.txt -------------------------------------------------------------------------------- /simple-git-hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/simple-git-hooks.json -------------------------------------------------------------------------------- /src/components/Author.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/components/Author.astro -------------------------------------------------------------------------------- /src/components/AuthorTitle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/components/AuthorTitle.astro -------------------------------------------------------------------------------- /src/components/Contributors.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/components/Contributors.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/Recipe.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/components/Recipe.astro -------------------------------------------------------------------------------- /src/components/RecipeCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/components/RecipeCard.astro -------------------------------------------------------------------------------- /src/components/RecipeProperties.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/components/RecipeProperties.astro -------------------------------------------------------------------------------- /src/components/Section.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/components/Section.astro -------------------------------------------------------------------------------- /src/components/Timer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/components/Timer.astro -------------------------------------------------------------------------------- /src/content/authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/authors.json -------------------------------------------------------------------------------- /src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/config.ts -------------------------------------------------------------------------------- /src/content/recipes/en/aeropress/coffeecollective.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/aeropress/coffeecollective.md -------------------------------------------------------------------------------- /src/content/recipes/en/aeropress/locus-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/aeropress/locus-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/aeropress/tastycoffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/aeropress/tastycoffee.md -------------------------------------------------------------------------------- /src/content/recipes/en/aeropress/theweldercatherine-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/aeropress/theweldercatherine-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/cezve/theweldercatherine-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/cezve/theweldercatherine-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/cezve/theweldercatherine-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/cezve/theweldercatherine-02.md -------------------------------------------------------------------------------- /src/content/recipes/en/chemex/locus-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/chemex/locus-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/coldbrew/ninetyplus-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/coldbrew/ninetyplus-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/coldbrew/tastycoffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/coldbrew/tastycoffee.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/aeroplan-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/aeroplan-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/barn-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/barn-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/bluebottle-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/bluebottle-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/heart-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/heart-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/lacabra-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/lacabra-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/locus-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/locus-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/ninetyplus-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/ninetyplus-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/ninetyplus-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/ninetyplus-02.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/nomand-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/nomand-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/nomand-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/nomand-02.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/silkydrum-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/silkydrum-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/submarine-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/submarine-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/submarine-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/submarine-02.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/submarine-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/submarine-03.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/theweldercatherine-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/theweldercatherine-01.md -------------------------------------------------------------------------------- /src/content/recipes/en/pourover/theweldercatherine-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/pourover/theweldercatherine-02.md -------------------------------------------------------------------------------- /src/content/recipes/en/summer/bluebottle-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/en/summer/bluebottle-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/aeropress/coffeecollective.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/aeropress/coffeecollective.md -------------------------------------------------------------------------------- /src/content/recipes/ru/aeropress/locus-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/aeropress/locus-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/aeropress/tastycoffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/aeropress/tastycoffee.md -------------------------------------------------------------------------------- /src/content/recipes/ru/aeropress/theweldercatherine-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/aeropress/theweldercatherine-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/cezve/theweldercatherine-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/cezve/theweldercatherine-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/cezve/theweldercatherine-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/cezve/theweldercatherine-02.md -------------------------------------------------------------------------------- /src/content/recipes/ru/chemex/locus-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/chemex/locus-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/coldbrew/ninetyplus-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/coldbrew/ninetyplus-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/coldbrew/tastycoffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/coldbrew/tastycoffee.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/aeroplan-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/aeroplan-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/barn-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/barn-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/bluebottle-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/bluebottle-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/heart-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/heart-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/lacabra-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/lacabra-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/locus-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/locus-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/ninetyplus-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/ninetyplus-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/ninetyplus-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/ninetyplus-02.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/nomand-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/nomand-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/nomand-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/nomand-02.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/silkydrum-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/silkydrum-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/submarine-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/submarine-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/submarine-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/submarine-02.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/submarine-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/submarine-03.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/theweldercatherine-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/theweldercatherine-01.md -------------------------------------------------------------------------------- /src/content/recipes/ru/pourover/theweldercatherine-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/pourover/theweldercatherine-02.md -------------------------------------------------------------------------------- /src/content/recipes/ru/summer/bluebottle-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/content/recipes/ru/summer/bluebottle-01.md -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/i18n/locales/about/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/i18n/locales/about/en.ts -------------------------------------------------------------------------------- /src/i18n/locales/about/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/i18n/locales/about/ru.json -------------------------------------------------------------------------------- /src/i18n/locales/common/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/i18n/locales/common/en.ts -------------------------------------------------------------------------------- /src/i18n/locales/common/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/i18n/locales/common/ru.json -------------------------------------------------------------------------------- /src/i18n/locales/methods/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/i18n/locales/methods/en.ts -------------------------------------------------------------------------------- /src/i18n/locales/methods/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/i18n/locales/methods/ru.json -------------------------------------------------------------------------------- /src/i18n/locales/not-found/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/i18n/locales/not-found/en.ts -------------------------------------------------------------------------------- /src/i18n/locales/not-found/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/i18n/locales/not-found/ru.json -------------------------------------------------------------------------------- /src/i18n/locales/recipe/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/i18n/locales/recipe/en.ts -------------------------------------------------------------------------------- /src/i18n/locales/recipe/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/i18n/locales/recipe/ru.json -------------------------------------------------------------------------------- /src/i18n/locales/settings/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/i18n/locales/settings/en.ts -------------------------------------------------------------------------------- /src/i18n/locales/settings/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/i18n/locales/settings/ru.json -------------------------------------------------------------------------------- /src/i18n/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/i18n/utils.ts -------------------------------------------------------------------------------- /src/icons/aeroplan-coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/aeroplan-coffee.svg -------------------------------------------------------------------------------- /src/icons/blue-bottle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/blue-bottle.svg -------------------------------------------------------------------------------- /src/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/chevron-down.svg -------------------------------------------------------------------------------- /src/icons/coffee-collective.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/coffee-collective.svg -------------------------------------------------------------------------------- /src/icons/coffeeWeight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/coffeeWeight.svg -------------------------------------------------------------------------------- /src/icons/heart-roasters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/heart-roasters.svg -------------------------------------------------------------------------------- /src/icons/ice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/ice.svg -------------------------------------------------------------------------------- /src/icons/locus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/locus.svg -------------------------------------------------------------------------------- /src/icons/ninety-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/ninety-plus.svg -------------------------------------------------------------------------------- /src/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/settings.svg -------------------------------------------------------------------------------- /src/icons/silky-drum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/silky-drum.svg -------------------------------------------------------------------------------- /src/icons/source-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/source-link.svg -------------------------------------------------------------------------------- /src/icons/submarine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/submarine.svg -------------------------------------------------------------------------------- /src/icons/tasty-coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/tasty-coffee.svg -------------------------------------------------------------------------------- /src/icons/temperature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/temperature.svg -------------------------------------------------------------------------------- /src/icons/the-barn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/the-barn.svg -------------------------------------------------------------------------------- /src/icons/the-welder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/the-welder.svg -------------------------------------------------------------------------------- /src/icons/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/time.svg -------------------------------------------------------------------------------- /src/icons/torrefacto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/torrefacto.svg -------------------------------------------------------------------------------- /src/icons/water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/icons/water.svg -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/pages/404.astro -------------------------------------------------------------------------------- /src/pages/[lang]/about.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/pages/[lang]/about.astro -------------------------------------------------------------------------------- /src/pages/[lang]/authors.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/pages/[lang]/authors.astro -------------------------------------------------------------------------------- /src/pages/[lang]/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/pages/[lang]/index.astro -------------------------------------------------------------------------------- /src/pages/[lang]/recipes/[method].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/pages/[lang]/recipes/[method].astro -------------------------------------------------------------------------------- /src/pages/[lang]/recipes/[method]/[name].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/pages/[lang]/recipes/[method]/[name].astro -------------------------------------------------------------------------------- /src/pages/[lang]/settings.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/pages/[lang]/settings.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | --- 4 | -------------------------------------------------------------------------------- /src/styles/box-shadow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/styles/box-shadow.css -------------------------------------------------------------------------------- /src/styles/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/styles/colors.css -------------------------------------------------------------------------------- /src/styles/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/styles/common.css -------------------------------------------------------------------------------- /src/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/styles/fonts.css -------------------------------------------------------------------------------- /src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/styles/main.css -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OdinVerst/trybrew/HEAD/vercel.json --------------------------------------------------------------------------------