Added page titles and proper favicon

This commit is contained in:
2026-04-05 15:15:07 -04:00
parent 4ec41ad4b3
commit 315b108fa1
6 changed files with 18 additions and 4 deletions

View File

@@ -5,7 +5,9 @@ defmodule MixerWeb.PageController do
if conn.assigns[:current_user] do
redirect(conn, to: ~p"/feed")
else
render(conn, :home)
conn
|> assign(:page_title, "Mixer")
|> render(:home)
end
end