diff --git a/CHANGELOG.md b/CHANGELOG.md
index b611e165..ddfa05c2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,7 @@
- Add "Registered on" date to user information
- Add language in user settings. The `LOCALE` environment variable will continue
to set the default locale for the application.
+- Add involvement links to home page
# v0.5.1
- Add French translation: Thank you [duponin](https://udongein.xyz/users/duponin)!
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index bee90181..d1605e6c 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -63,8 +63,7 @@ And as always, thank you!
[`phx_gen_auth`](https://hexdocs.pm/phx_gen_auth/).
- `Dockerfile` and example `docker-compose.yml`
- Automatic migrations in `MIX_ENV=prod` or Docker image
-- JS linting with [standard.js](https://standardjs.com), HEEx linting with
- [heex_formatter](https://github.com/feliperenan/heex_formatter)
+- JS linting with [standard.js](https://standardjs.com)
## Docs
diff --git a/lib/cannery_web/live/home_live.ex b/lib/cannery_web/live/home_live.ex
index 7ed5ffcc..10a37571 100644
--- a/lib/cannery_web/live/home_live.ex
+++ b/lib/cannery_web/live/home_live.ex
@@ -131,6 +131,42 @@ defmodule CanneryWeb.HomeLive do
<% end %>
+
+
+
+ <%= gettext("Get involved!") %>
+
+
+ -
+ <%= link class: "flex flex-row justify-center items-center space-x-2 hover:underline",
+ to: "https://gitea.bubbletea.dev/shibao/cannery",
+ target: "_blank",
+ rel: "noopener noreferrer" do %>
+
<%= gettext("View the source code") %>
+
+ <% end %>
+
+ -
+ <%= link class: "flex flex-row justify-center items-center space-x-2 hover:underline",
+ to: "https://weblate.bubbletea.dev/engage/cannery",
+ target: "_blank",
+ rel: "noopener noreferrer" do %>
+
<%= gettext("Help translate") %>
+
+ <% end %>
+
+ -
+ <%= link class: "flex flex-row justify-center items-center space-x-2 hover:underline",
+ to: "https://gitea.bubbletea.dev/shibao/cannery/issues/new",
+ target: "_blank",
+ rel: "noopener noreferrer" do %>
+
<%= gettext("Report bugs or request features") %>
+
+ <% end %>
+
+
"""
end
diff --git a/priv/gettext/default.pot b/priv/gettext/default.pot
index ce950ffa..9b77b062 100644
--- a/priv/gettext/default.pot
+++ b/priv/gettext/default.pot
@@ -870,3 +870,23 @@ msgstr ""
#: lib/cannery_web/templates/user_registration/new.html.heex:33
msgid "Language"
msgstr ""
+
+#, elixir-autogen, elixir-format
+#: lib/cannery_web/live/home_live.ex:139
+msgid "Get involved!"
+msgstr ""
+
+#, elixir-autogen, elixir-format
+#: lib/cannery_web/live/home_live.ex:156
+msgid "Help translate"
+msgstr ""
+
+#, elixir-autogen, elixir-format
+#: lib/cannery_web/live/home_live.ex:165
+msgid "Report bugs or request features"
+msgstr ""
+
+#, elixir-autogen, elixir-format
+#: lib/cannery_web/live/home_live.ex:147
+msgid "View the source code"
+msgstr ""