feat(mobile): add MobileYouScreen with profile card and action links

This commit is contained in:
Jannis Braun
2026-03-17 15:40:23 +01:00
parent 49e4402802
commit 934a1b85a7
2 changed files with 156 additions and 1 deletions
@@ -17,7 +17,7 @@ const PlaceholderScreen = ({ label }: { label: string }) => (
import { MobileSpacesScreen } from './MobileSpacesScreen';
// These will be replaced with real imports as each task is completed:
import { MobileDmsScreen } from './MobileDmsScreen';
const MobileYouScreen = () => <PlaceholderScreen label="You" />;
import { MobileYouScreen } from './MobileYouScreen';
import { MobileChatScreen } from './MobileChatScreen';
const MobileSettingsScreen = ({ initialPanel: _p }: { initialPanel?: string }) => <PlaceholderScreen label="Settings" />;
const MobileVoiceMiniBar = () => null;