livebook/lib/livebook_web/live/page_helpers.ex
Paulo Valim 285bc923b7
Rename the Explore section to Learn (#1424)
Co-authored-by: José Valim <jose.valim@gmail.com>
2022-09-21 12:06:22 +02:00

18 lines
297 B
Elixir

defmodule LivebookWeb.PageHelpers do
use Phoenix.Component
@doc """
Renders page title.
## Examples
<.title text="Learn" socket={@socket} />
"""
def title(assigns) do
~H"""
<h1 class="text-2xl text-gray-800 font-medium">
<%= @text %>
</h1>
"""
end
end