defmodule Dialup.App.Layout do @moduledoc """ Root layout shared across all pages. Session data set here persists across navigation. This layout renders inside the
element defined by the shell (root.html.heex). Do not include , , or tags here. Styles live in layout.css (colocated CSS — auto-scoped at compile time). """ use Dialup.Layout @impl true def mount(session) do {:ok, session} end @impl true def render(assigns) do ~H"""
<%= "<%=" %> raw(@inner_content) %>
""" end end