defmodule ArcanaWeb.Layouts do @moduledoc false use Phoenix.Component @doc """ Root layout for the Arcana dashboard. Renders a complete HTML document with isolated styles and bundled Phoenix LiveView JavaScript, making the dashboard self-contained. """ def root(assigns) do ~H""" Arcana Dashboard {@inner_content} """ end def app(assigns) do ~H""" {@inner_content} """ end end