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",
]),
],
),