@bamptee/aia-code 1.0.2 → 1.0.3

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": "@bamptee/aia-code",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "AI Architecture Assistant - orchestrate AI-assisted development workflows via CLI tools (Claude, Codex, Gemini)",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -111,7 +111,10 @@ function App() {
111
111
 
112
112
  return React.createElement('div', { className: 'min-h-screen' },
113
113
  React.createElement('nav', { className: 'border-b border-aia-border px-6 py-3 flex items-center gap-6' },
114
- React.createElement('a', { href: '#/', className: 'text-aia-accent font-bold text-lg hover:text-sky-300' }, 'AIA'),
114
+ React.createElement('a', { href: '#/', className: 'text-aia-accent font-bold text-lg hover:text-sky-300 flex items-center gap-1.5' },
115
+ 'AIA',
116
+ React.createElement('span', { className: 'text-slate-500 font-light text-sm tracking-tight' }, '{code}'),
117
+ ),
115
118
  projectName && React.createElement('span', {
116
119
  className: 'bg-violet-500/20 text-violet-300 border border-violet-500/30 px-2 py-0.5 rounded text-xs font-medium',
117
120
  }, projectName),