Current section

Files

Jump to
moon lib moon_web components facing moon_earth.ex
Raw

lib/moon_web/components/facing/moon_earth.ex

defmodule MoonWeb.Components.Facing.MoonEarth do
@moduledoc false
use MoonWeb, :stateless_component
def render(assigns) do
~F"""
<div>
<div class="ltr:origin-top-left rtl:origin-top-right fixed z-10 w-5/12 scale-[0.3] top-72 -end-[500px]">
<img src="/moon/assets/images/facing/earth.webp" alt="Earth" height="1414" width="1400">
</div>
<div class="ltr:origin-top-left rtl:origin-top-right fixed w-5/12 top-60 -end-[500px]">
<img src="/moon/assets/images/facing/moon.webp" alt="Moon" height="1356" width="1356">
</div>
</div>
"""
end
end