2026-02-18 21:23:15 +00:00
|
|
|
defmodule BerrypodWeb.Shop.Contact do
|
|
|
|
|
use BerrypodWeb, :live_view
|
2026-01-17 21:52:11 +00:00
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
|
def mount(_params, _session, socket) do
|
2026-02-08 11:59:33 +00:00
|
|
|
{:ok, assign(socket, :page_title, "Contact")}
|
2026-01-17 21:52:11 +00:00
|
|
|
end
|
2026-01-17 22:17:59 +00:00
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
|
def render(assigns) do
|
|
|
|
|
~H"""
|
2026-02-18 21:23:15 +00:00
|
|
|
<BerrypodWeb.PageTemplates.contact {assigns} />
|
2026-01-17 22:17:59 +00:00
|
|
|
"""
|
|
|
|
|
end
|
2026-01-17 21:52:11 +00:00
|
|
|
end
|