Skip to content

Commit

Permalink
fix: stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
joaodiaslobo committed Jan 8, 2025
1 parent 41b7924 commit 31afc3f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/safira_web/components/layouts/landing.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<%= assigns[:page_title] || "SEI '25" %>
</.live_title>
<link phx-track-static rel="stylesheet" href={~p"/assets/app.css"} />
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/icons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/images/icons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/images/icons/favicon-16x16.png" />
<script defer phx-track-static type="text/javascript" src={~p"/assets/app.js"}>
</script>
<script
Expand All @@ -24,7 +24,7 @@
<.navbar
pages={SafiraWeb.Config.landing_pages()}
registrations_open?={Safira.Event.registrations_open?()}
current_user={@current_user}
current_user={Map.get(assigns, :current_user)}
/>
<main>
<%= @inner_content %>
Expand Down
3 changes: 3 additions & 0 deletions lib/safira_web/components/layouts/root.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
<%= assigns[:page_title] || "SEI '25" %>
</.live_title>
<link phx-track-static rel="stylesheet" href={~p"/assets/app.css"} />
<link rel="apple-touch-icon" sizes="180x180" href="/images/icons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/images/icons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/images/icons/favicon-16x16.png" />
<script defer phx-track-static type="text/javascript" src={~p"/assets/app.js"}>
</script>
<script
Expand Down

0 comments on commit 31afc3f

Please sign in to comment.