Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Adição do tipo "Livro" como "Conteúdo Recomendado" #232

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _api/modules/cards/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const typeDefs = gql`
ARTICLE
YOUTUBE
CHALLENGE
BOOK
}
type Card {
id: String
Expand Down
8 changes: 7 additions & 1 deletion _data/cards/pt_BR/clean-code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,16 @@ contents:
- type: YOUTUBE
title: "Filipe Deschamps: CLEAN CODE 2 - O que é código limpo?"
link: https://www.youtube.com/watch?v=ZVtGbO_CnfA
- type: BOOK
title: "Código limpo: habilidades práticas do Agile software"
link: https://www.amazon.com.br/C%C3%B3digo-limpo-Robert-C-Martin/dp/8576082675
alura-contents:
- type: ARTICLE
title: "Clean Code: O que é, Casos de Uso, Exemplo de Código Limpo"
link: https://www.alura.com.br/artigos/o-que-e-clean-code
- type: YOUTUBE
title: "Alura: Clean Code e Solid"
link: https://www.youtube.com/watch?v=XV9B4LX_re8
link: https://www.youtube.com/watch?v=XV9B4LX_re8
- type: BOOK
title: "Orientação a Objetos e SOLID para Ninjas"
link: https://www.casadocodigo.com.br/products/livro-oo-solid?_pos=2&_sid=fe732c657&_ss=r
4 changes: 4 additions & 0 deletions _data/locale/pt-BR.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ export default {
"PATH.T_BLOCK_SUGGESTED_CONTENT.CHALLENGE.BG": "#162639",
"PATH.T_BLOCK_SUGGESTED_CONTENT.CHALLENGE.COLOR": "#FFFFFF",

"PATH.T_BLOCK_SUGGESTED_CONTENT.BOOK.LABEL": "Livro",
"PATH.T_BLOCK_SUGGESTED_CONTENT.BOOK.BG": "#CADCEA",
"PATH.T_BLOCK_SUGGESTED_CONTENT.BOOK.COLOR": "#333333",

"TSHAPE.DEPTH.LEVEL_NAME": "Nível",
"TSHAPE.DEPTH.LEVEL_SUFIX": "de profundidade",

Expand Down