From 8578eb525e315bb5243e4ebab43056bf6fde232e Mon Sep 17 00:00:00 2001 From: giles Date: Wed, 4 Mar 2026 10:56:50 +0000 Subject: [PATCH] Change sx logo to () Co-Authored-By: Claude Opus 4.6 --- sx/sxc/home.sx | 2 +- sx/sxc/sx_components.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sx/sxc/home.sx b/sx/sxc/home.sx index 92a4151..c5899da 100644 --- a/sx/sxc/home.sx +++ b/sx/sxc/home.sx @@ -3,7 +3,7 @@ (defcomp ~sx-hero (&key &rest children) (div :class "max-w-4xl mx-auto px-6 py-16 text-center" (h1 :class "text-5xl font-bold text-stone-900 mb-4" - (span :class "text-violet-600" "sx")) + (span :class "text-violet-600 font-mono" "()")) (p :class "text-2xl text-stone-600 mb-8" "s-expressions for the web") (p :class "text-lg text-stone-500 max-w-2xl mx-auto mb-12" diff --git a/sx/sxc/sx_components.py b/sx/sxc/sx_components.py index f8e8efc..80ab704 100644 --- a/sx/sxc/sx_components.py +++ b/sx/sxc/sx_components.py @@ -125,7 +125,7 @@ async def _sx_header_sx(nav: str | None = None, *, child: str | None = None) -> return await render_to_sx("menu-row-sx", id="sx-row", level=1, colour="violet", link_href="/", link_label="sx", - link_label_content=SxExpr('(span :class "font-mono" "() sx")'), + link_label_content=SxExpr('(span :class "font-mono" "()")'), nav=SxExpr(nav) if nav else None, child_id="sx-header-child", child=SxExpr(child) if child else None,