This commit is contained in:
2023-09-20 20:40:47 -04:00
commit bd9fc782ff
927 changed files with 5533 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
defmodule StreamviewWeb.PageController do
use StreamviewWeb, :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