Initial commit 🎉

This commit is contained in:
Kieran Eglin
2024-01-18 20:32:01 -08:00
commit 1455cee3af
928 changed files with 5419 additions and 0 deletions
@@ -0,0 +1,9 @@
defmodule PinchflatWeb.PageController do
use PinchflatWeb, :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