From 0258ca6840e51348a5e9190a86809ef993ca7068 Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Sat, 7 Feb 2026 21:48:11 +0000 Subject: [PATCH] style(home): replace empty state placeholders with blurred skeletons - Show blurred skeleton cards with overlay text for empty brews, bags, and activity sections instead of plain dashed borders - Use 6 skeleton cards for brew/bag sections to fill desktop width - Skeleton structure mirrors real card layout (title, details, buttons) --- templates/pages/home.html | 64 +++++++++++++++++++++++++++++++++++---- 1 file changed, 58 insertions(+), 6 deletions(-) diff --git a/templates/pages/home.html b/templates/pages/home.html index f7fdcd4..3d37dce 100644 --- a/templates/pages/home.html +++ b/templates/pages/home.html @@ -112,8 +112,27 @@ is_authenticated %} {% for brew in recent_brews %} {{ brew_card::card(brew, is_authenticated) }} {% endfor %} {% else %} -
- No brews yet. +
+ +
+ No brews yet +
{% endif %} @@ -134,8 +153,28 @@ is_authenticated %} {% for bag in open_bags %} {{ bag_card::card(bag, is_authenticated) }} {% endfor %}
{% else %} -
- No open bags. +
+ +
+ No open bags +
{% endif %} @@ -170,8 +209,21 @@ is_authenticated %} {% endfor %}
{% else %} -
- No activity yet. +
+ +
+ No activity yet +
{% endif %}