systant/dashboard/lib/dashboard_web/components/layouts.ex
ryan 9ae6a15970 Clean up stale directories and fix monorepo structure
- Remove remaining home-assistant-integration/ and dev-config/
- Move dashboard to repo root for proper monorepo layout
- Remove crash dumps and symlinks
- Clean structure: server/ and dashboard/ at root level
2025-08-02 21:53:53 -07:00

15 lines
448 B
Elixir

defmodule DashboardWeb.Layouts do
@moduledoc """
This module holds different layouts used by your application.
See the `layouts` directory for all templates available.
The "root" layout is a skeleton rendered as part of the
application router. The "app" layout is set as the default
layout on both `use DashboardWeb, :controller` and
`use DashboardWeb, :live_view`.
"""
use DashboardWeb, :html
embed_templates "layouts/*"
end