Current section

Files

Jump to
phoenix_analytics lib phoenix_analytics web live components footer.ex
Raw

lib/phoenix_analytics/web/live/components/footer.ex

defmodule PhoenixAnalytics.Web.Live.Components.Footer do
@moduledoc false
use PhoenixAnalytics.Web, :live_component
@impl true
def render(assigns) do
~H"""
<footer class="mx-auto max-w-screen-sm my-20">
<div class="flex items-center justify-between mt-16 gap-2 px-4 py-2 sm:px-6 lg:px-2 text-sm">
<%!-- Left side of footer --%>
<div class="flex items-center gap-4 font-semibold leading-6">
<p><%= Date.utc_today().year %></p>
</div>
<%!-- Mid of footer --%>
<div class="flex items-center gap-4">
<a href="https://github.com/lalabuy948/PhoenixAnalytics">
<svg
width="15"
height="15"
viewBox="0 0 15 15"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.49933 0.25C3.49635 0.25 0.25 3.49593 0.25 7.50024C0.25 10.703 2.32715 13.4206 5.2081 14.3797C5.57084 14.446 5.70302 14.2222 5.70302 14.0299C5.70302 13.8576 5.69679 13.4019 5.69323 12.797C3.67661 13.235 3.25112 11.825 3.25112 11.825C2.92132 10.9874 2.44599 10.7644 2.44599 10.7644C1.78773 10.3149 2.49584 10.3238 2.49584 10.3238C3.22353 10.375 3.60629 11.0711 3.60629 11.0711C4.25298 12.1788 5.30335 11.8588 5.71638 11.6732C5.78225 11.205 5.96962 10.8854 6.17658 10.7043C4.56675 10.5209 2.87415 9.89918 2.87415 7.12104C2.87415 6.32925 3.15677 5.68257 3.62053 5.17563C3.54576 4.99226 3.29697 4.25521 3.69174 3.25691C3.69174 3.25691 4.30015 3.06196 5.68522 3.99973C6.26337 3.83906 6.8838 3.75895 7.50022 3.75583C8.1162 3.75895 8.73619 3.83906 9.31523 3.99973C10.6994 3.06196 11.3069 3.25691 11.3069 3.25691C11.7026 4.25521 11.4538 4.99226 11.3795 5.17563C11.8441 5.68257 12.1245 6.32925 12.1245 7.12104C12.1245 9.9063 10.4292 10.5192 8.81452 10.6985C9.07444 10.9224 9.30633 11.3648 9.30633 12.0413C9.30633 13.0102 9.29742 13.7922 9.29742 14.0299C9.29742 14.2239 9.42828 14.4496 9.79591 14.3788C12.6746 13.4179 14.75 10.7025 14.75 7.50024C14.75 3.49593 11.5036 0.25 7.49933 0.25Z"
fill="currentColor"
fill-rule="evenodd"
clip-rule="evenodd"
>
</path>
</svg>
</a>
<a href="https://x.com/mrpopov_com">
<svg
role="img"
viewBox="-0.5 -0.5 15 15"
xmlns="http://www.w3.org/2000/svg"
height="15"
width="15"
fill="none"
id="X--Streamline-Simple-Icons"
>
<title>X</title>
<path
d="M11.025583333333334 0.6725833333333334h2.146666666666667l-4.6899999999999995 5.360833333333334L14 13.326833333333335h-4.320166666666667l-3.3833333333333333 -4.424 -3.8721666666666668 4.424H0.2765l5.016666666666667 -5.734166666666667L0 0.6731666666666667h4.429833333333334l3.058416666666667 4.043666666666667ZM10.2725 12.042333333333334h1.1894166666666668L3.7835 1.8900000000000003H2.507166666666667Z"
stroke-width="1"
fill="currentColor"
fill-rule="evenodd"
clip-rule="evenodd"
>
</path>
</svg>
</a>
</div>
<%!-- Right side of footer --%>
<div class="flex items-center gap-4 font-semibold leading-6">
<.react name="ThemeToggle" socket={@socket} />
</div>
</div>
</footer>
"""
end
end