feat: F001 app shell & global layout system

Add PageHeader, UserMenu, NotificationButton, OrganizationContextBadge,
RightContextPanel, CompareTray, and ActivityTimeline; wire all into AppShell.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Benjamin Sutter
2026-05-15 11:50:06 +02:00
parent 70c0d79d8c
commit 9a2476c58a
10 changed files with 389 additions and 7 deletions
+16
View File
@@ -0,0 +1,16 @@
import { Box, Typography } from '@mui/material'
import { PageHeader } from '../../components/layout'
export default function ActivityTimeline() {
return (
<Box sx={{ p: 3 }}>
<PageHeader
title="Aktivitäts-Timeline"
subtitle="Verlauf aller System- und Benutzeraktionen"
/>
<Typography color="text.secondary" sx={{ mt: 3 }}>
Timeline wird implementiert...
</Typography>
</Box>
)
}