File size: 659 Bytes
a8b4b87 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import { registerWithA11oy } from '@workspace/a11oy-orchestration/client';
import App from './App';
import './index.css';
void registerWithA11oy({
product: 'amaru',
displayName: 'Amaru — The Andean Ouroboros',
basePath: '/conduit/',
accentColor: '#c9b787',
capabilities: [
{ id: 'cycle_ledger', label: 'Cycle Ledger', governanceClass: 'observation' },
{ id: 'self_reflection', label: 'Self-Reflection Loop', governanceClass: 'recommendation' },
],
});
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
);
|