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-23 21:31:35 +00:00
|
|
|
{:ok,
|
|
|
|
|
socket
|
|
|
|
|
|> assign(:page_title, "Contact")
|
|
|
|
|
|> assign(:page_description, "Get in touch with us for any questions or help with your order.")}
|
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
|