defmodule LivebookWeb.LearnHelpers do
use Phoenix.Component
alias LivebookWeb.Router.Helpers, as: Routes
@doc """
Renders an learn notebook card.
"""
def notebook_card(assigns) do
~H"""
<%= live_redirect to: Routes.learn_path(@socket, :notebook, @notebook_info.slug),
class: "flex items-center justify-center p-6 border-2 border-gray-100 rounded-t-2xl h-[150px]" do %>
<% end %>
<%= live_redirect(@notebook_info.title,
to: Routes.learn_path(@socket, :notebook, @notebook_info.slug),
class: "text-gray-800 font-semibold cursor-pointer"
) %>
<%= @notebook_info.details.description %>
"""
end
end