diff --git a/assets/css/landing.scss b/assets/css/landing.scss
index f4d25d0a..00b270e9 100644
--- a/assets/css/landing.scss
+++ b/assets/css/landing.scss
@@ -94,7 +94,7 @@
}
p {
- text-wrap: nowrap;
+ text-wrap: wrap;
margin-top: 0.5rem;
padding: 0 1rem 1.5rem 1rem;
}
diff --git a/lib/pescarte_web/templates/aplicativos_html/show.html.heex b/lib/pescarte_web/templates/aplicativos_html/show.html.heex
index b0d59b00..8d9dc0ec 100644
--- a/lib/pescarte_web/templates/aplicativos_html/show.html.heex
+++ b/lib/pescarte_web/templates/aplicativos_html/show.html.heex
@@ -1,10 +1,10 @@
-
+
<.text size="h3" color="text-white-100">Cota-Pesca
<.text size="base" color="text-white-100">
- Texto de descrição
+ Aplicativo para consulta de cotações diárias de pescados em geral
<.button style="primary">
Saiba mais
@@ -13,14 +13,14 @@
-
+
- <.text size="h3" color="text-white-100">Enciclopédia das Pescas
+ <.text size="h3" color="text-white-100">Enciclopédia da Pesca
<.text size="base" color="text-white-100">
- Texto de descrição
+ Se quiser ver os nomes populares dos peixes por região, consulte este aplicativo!
<.button style="primary">
Saiba mais
diff --git a/lib/pescarte_web/templates/landing_html/show.html.heex b/lib/pescarte_web/templates/landing_html/show.html.heex
index 1e65901b..1f6e0ce8 100644
--- a/lib/pescarte_web/templates/landing_html/show.html.heex
+++ b/lib/pescarte_web/templates/landing_html/show.html.heex
@@ -65,7 +65,7 @@
<.text size="h3" color="text-white-100">Relatórios Públicos
<.text size="base" color="text-white-100">
- Agenda Trimestral.
+ Agenda mensal
<.button style="primary">
Saiba mais
@@ -98,7 +98,7 @@
-
+
<.text size="h3" color="text-white-100">Aplicações
<.text size="base" color="text-white-100">
diff --git a/mix.exs b/mix.exs
index 7ceaa4a6..13c6a53b 100644
--- a/mix.exs
+++ b/mix.exs
@@ -90,7 +90,9 @@ defmodule Pescarte.MixProject do
"ecto.reset": ["ecto.drop", "ecto.setup", "seed"],
test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"],
"assets.build": ["cmd --cd assets node build.js"],
- "assets.deploy": ["cmd --cd assets node build.js --deploy", "phx.digest"]
+ "assets.deploy": ["cmd --cd assets node build.js --deploy", "phx.digest"],
+ lint: ["compile --warning-as-errors", "clean", "format --check-formatted", "credo --strict"],
+ "ci.check": ["lint", "test --only unit", "test --only integration"]
]
end
end