From 7ae3af91bad8ba72b049c54ceb11f679e6ca91f8 Mon Sep 17 00:00:00 2001 From: Jamey Greenwood Date: Tue, 20 Jan 2026 20:59:02 +0000 Subject: [PATCH] chore: change newsletter default title to "Get updates" More accurate than "Stay in touch" - newsletters are one-way communication. Also updated description slightly: "news" instead of "updates" to avoid repetition with the title. Co-Authored-By: Claude Opus 4.5 --- lib/simpleshop_theme_web/components/shop_components.ex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/simpleshop_theme_web/components/shop_components.ex b/lib/simpleshop_theme_web/components/shop_components.ex index 632cf2b..49ec8d8 100644 --- a/lib/simpleshop_theme_web/components/shop_components.ex +++ b/lib/simpleshop_theme_web/components/shop_components.ex @@ -1674,11 +1674,11 @@ defmodule SimpleshopThemeWeb.ShopComponents do ## Examples <.newsletter_card /> - <.newsletter_card title="Join our newsletter" description="Get updates on new products." /> + <.newsletter_card title="Studio news" description="Get updates on new products." /> <.newsletter_card variant={:inline} /> """ - attr :title, :string, default: "Stay in touch" - attr :description, :string, default: "Be the first to see new designs and get updates from the studio." + attr :title, :string, default: "Get updates" + attr :description, :string, default: "Be the first to see new designs and news from the studio." attr :button_text, :string, default: "Subscribe" attr :variant, :atom, default: :card