starting files

This commit is contained in:
2026-03-05 12:58:23 -07:00
commit 76c164d931
38 changed files with 1239 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
defmodule ElixirAiWeb.PageController do
use ElixirAiWeb, :controller
def home(conn, _params) do
# The home page is often custom made,
# so skip the default app layout.
render(conn, :home, layout: false)
end
end