Shared topbar + sidebar for all ZeusXR apps. This domain serves the shell assets — it is not a user-facing page.
/shell.js — component loader/shell.css — styles
<div id="zeusxr-shell"></div>
<script>
window.ZeusShellConfig = {
currentApp: 'labs',
sidebarItems: [
{ id: 'videos', label: 'My Videos', icon: '<svg>...</svg>', href: '#', active: true }
],
user: { avatarUrl: '...' },
onSectionClick: (id) => { /* switch section */ }
};
</script>
<script src="https://zeusxr-shell.pages.dev/shell.js" defer></script>