fix(mobile): stacked Add Friend input, responsive tab bar, mobile header

This commit is contained in:
Jannis Braun
2026-03-17 15:43:43 +01:00
parent 2790e9e088
commit 183290ef07
2 changed files with 75 additions and 36 deletions
@@ -15,6 +15,7 @@ const PlaceholderScreen = ({ label }: { label: string }) => (
);
import { MobileSpacesScreen } from './MobileSpacesScreen';
import { FriendsPage } from '../chat/FriendsPage';
// These will be replaced with real imports as each task is completed:
import { MobileDmsScreen } from './MobileDmsScreen';
import { MobileYouScreen } from './MobileYouScreen';
@@ -25,7 +26,7 @@ const MobileVoiceFullScreen = () => <PlaceholderScreen label="Voice" />;
const screenMap: Record<string, (params?: Record<string, string>) => React.ReactNode> = {
'channel-chat': (params) => <MobileChatScreen params={params} />,
'friends': () => <PlaceholderScreen label="Friends" />,
'friends': () => <FriendsPage mobile />,
'settings': () => <MobileSettingsScreen />,
'settings-account': () => <MobileSettingsScreen initialPanel="account" />,
'settings-voice': () => <MobileSettingsScreen initialPanel="voice" />,