@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 +1 -1
- package/src/ui/public/main.js +4 -1
package/package.json
CHANGED
package/src/ui/public/main.js
CHANGED
|
@@ -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' },
|
|
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),
|