From 56d02cf8cb539e0e50cd5725c42121bc5b933eec Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Thu, 12 Mar 2026 08:10:06 -0500 Subject: [PATCH] Remove icons from category headings on home page --- lib/ammoprices_web/live/home_live.ex | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/lib/ammoprices_web/live/home_live.ex b/lib/ammoprices_web/live/home_live.ex index 4b5a57b..d04a6bf 100644 --- a/lib/ammoprices_web/live/home_live.ex +++ b/lib/ammoprices_web/live/home_live.ex @@ -8,10 +8,10 @@ defmodule AmmopricesWeb.HomeLive do alias Ammoprices.Prices @categories [ - %{id: "handgun", label: "Handgun", icon: "hero-bolt"}, - %{id: "rifle", label: "Rifle", icon: "hero-signal"}, - %{id: "rimfire", label: "Rimfire", icon: "hero-fire"}, - %{id: "shotgun", label: "Shotgun", icon: "hero-shield-check"} + %{id: "handgun", label: "Handgun"}, + %{id: "rifle", label: "Rifle"}, + %{id: "rimfire", label: "Rimfire"}, + %{id: "shotgun", label: "Shotgun"} ] @impl true @@ -54,12 +54,9 @@ defmodule AmmopricesWeb.HomeLive do <%!-- Category grid --%>
-
- <.icon name={cat.icon} class="w-5 h-5 text-primary" /> -

- {cat.label} -

-
+

+ {cat.label} +

<.link