From 4fa4a6a83e5f4f001e25447b406ad90d5f7ead08 Mon Sep 17 00:00:00 2001 From: Jamey Greenwood Date: Tue, 20 Jan 2026 20:56:52 +0000 Subject: [PATCH] chore: change social links default title to "Find me online" More neutral and personal than "Follow us": - Works for all platform types (GitHub, Ko-fi, etc., not just social follows) - "me" fits a solo POD seller better than corporate "us" Co-Authored-By: Claude Opus 4.5 --- lib/simpleshop_theme_web/components/shop_components.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/simpleshop_theme_web/components/shop_components.ex b/lib/simpleshop_theme_web/components/shop_components.ex index a733f9c..632cf2b 100644 --- a/lib/simpleshop_theme_web/components/shop_components.ex +++ b/lib/simpleshop_theme_web/components/shop_components.ex @@ -1751,9 +1751,9 @@ defmodule SimpleshopThemeWeb.ShopComponents do ## Examples <.social_links_card /> - <.social_links_card title="Connect with us" links={[%{platform: :instagram, url: "https://instagram.com/example", label: "Instagram"}]} /> + <.social_links_card title="Elsewhere" links={[%{platform: :instagram, url: "https://instagram.com/example", label: "Instagram"}]} /> """ - attr :title, :string, default: "Follow us" + attr :title, :string, default: "Find me online" attr :links, :list, default: [ %{platform: :instagram, url: "#", label: "Instagram"}, %{platform: :pinterest, url: "#", label: "Pinterest"}