berrypod/lib/berrypod_web/live/shop/coming_soon.ex
jamey 2007279fc6 replace dead Tailwind classes in shop pages with custom CSS
Coming soon page was unstyled after Tailwind removal — replaced
utility classes with proper component CSS. Also removed dead h-full
classes from shop_root layout, adding height: 100% to the shop reset.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 21:27:52 +00:00

23 lines
513 B
Elixir

defmodule BerrypodWeb.Shop.ComingSoon do
use BerrypodWeb, :live_view
@impl true
def mount(_params, _session, socket) do
{:ok, assign(socket, :page_title, "Coming soon")}
end
@impl true
def render(assigns) do
~H"""
<main class="coming-soon" role="main">
<div>
<h1 class="coming-soon-title">{@theme_settings.site_name}</h1>
<p class="coming-soon-message">
We're getting things ready. Check back soon.
</p>
</div>
</main>
"""
end
end