feat(ui): refine home and private room navigation

Replace the floating bottom navigation with a full-width tab bar. Add splash press feedback and a neutral private room background.
This commit is contained in:
2026-07-13 18:16:17 +08:00
parent 225d232763
commit d8cd05b228
9 changed files with 120 additions and 62 deletions
+2 -2
View File
@@ -80,7 +80,7 @@ export function PrivateRoomScreen() {
};
return (
<MobileShell background="#fff7ed">
<MobileShell background="#f3f4f2">
<main className={styles.shell}>
<div className={styles.backgroundGlowOne} />
<div className={styles.backgroundGlowTwo} />
@@ -186,7 +186,7 @@ export function PrivateRoomScreen() {
<AppBottomNav
activeItem="privateRoom"
onChatClick={() => navigator.openChat({ replace: false })}
onChatClick={() => navigator.push(ROUTES.splash, { scroll: false })}
onPrivateRoomClick={() => undefined}
/>