defmodule PyrauiWeb.DocsLive.SkeletonLayoutDocs do use PyrauiWeb, :html def render(assigns) do ~H"""

Skeleton Layout

Full-page skeleton layouts for dashboard, article, and profile loading states.

Dashboard Skeleton

Article & Profile

Usage


    <.skeleton_layout variant={:dashboard} />
    <.skeleton_layout variant={:article} class="mt-6" />
            
""" end end