From 095f05406ae8850c41b350ba3791dc0f2174a73f Mon Sep 17 00:00:00 2001 From: Benoit TRAVERS Date: Thu, 16 Jul 2026 03:20:51 +0200 Subject: [PATCH] fix(theme): update the part-of strip to the waving mascot + BtravStack casing --- .changeset/partof-waving-mascot.md | 5 +++++ packages/theme/src/index.ts | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .changeset/partof-waving-mascot.md diff --git a/.changeset/partof-waving-mascot.md b/.changeset/partof-waving-mascot.md new file mode 100644 index 0000000..3d0e3a7 --- /dev/null +++ b/.changeset/partof-waving-mascot.md @@ -0,0 +1,5 @@ +--- +"@btravstack/theme": patch +--- + +The "Part of BtravStack" strip now shows the new waving character mascot and the BtravStack brand casing. diff --git a/packages/theme/src/index.ts b/packages/theme/src/index.ts index c087e06..f7af24d 100644 --- a/packages/theme/src/index.ts +++ b/packages/theme/src/index.ts @@ -9,7 +9,7 @@ import "./style.css"; * an inline string (rendered via innerHTML) so the theme package ships no image * asset and works on every site regardless of its own logo. */ -const BEET_MARK = ``; +const BEET_MARK = ``; /** "Part of 🫜 btravstack" org-attribution strip, shown at the bottom of every page. */ const PartOfBtravstack = () => @@ -21,8 +21,8 @@ const PartOfBtravstack = () => h("span", { class: "btv-partof-label" }, "Part of"), h("span", { class: "btv-partof-mark", innerHTML: BEET_MARK }), h("span", { class: "btv-partof-word" }, [ - h("span", { class: "btv-partof-pink" }, "btrav"), - "stack", + h("span", { class: "btv-partof-pink" }, "Btrav"), + "Stack", ]), ], ),