@wopr-network/platform-ui-core 1.22.1 → 1.22.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wopr-network/platform-ui-core",
3
- "version": "1.22.1",
3
+ "version": "1.22.2",
4
4
  "description": "Brand-agnostic AI agent platform UI — deploy as any brand via env vars",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,16 +1,15 @@
1
1
  "use client";
2
2
 
3
- import { brandName } from "@/lib/brand-config";
3
+ import { brandName, getBrandConfig } from "@/lib/brand-config";
4
4
 
5
5
  export function BrandWordmark() {
6
+ const tagline = getBrandConfig().tagline;
6
7
  return (
7
8
  <div className="mb-6 flex flex-col items-center gap-1">
8
9
  <span className="text-2xl font-bold uppercase tracking-[0.3em] text-terminal">
9
10
  {brandName()}
10
11
  </span>
11
- <span className="text-xs uppercase tracking-[0.2em] text-muted-foreground">
12
- System Access Terminal
13
- </span>
12
+ <span className="text-xs uppercase tracking-[0.2em] text-muted-foreground">{tagline}</span>
14
13
  </div>
15
14
  );
16
15
  }