feat: Unify navigation with consistent header and centered bottom menu
Some checks failed
CI/CD Pipeline / Lint and Test (push) Has been cancelled
CI/CD Pipeline / E2E Tests (push) Has been cancelled
CI/CD Pipeline / Build Application (push) Has been cancelled

- Removed duplicate MobileNav AppBar from desktop view
- Added unified header bar across all screen sizes (mobile + desktop)
- Positioned connection status on left, user menu on right in header
- Centered bottom navigation menu on desktop (30% width with 20px margin)
- Hidden floating voice button on desktop (using center button instead)
- Updated voice command button to pink color (#FF69B4) matching design
- Added rounded corners to desktop bottom navigation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-10-03 20:55:42 +00:00
parent 75e5c2866d
commit fb9f9d25c7
3 changed files with 121 additions and 141 deletions

View File

@@ -2,7 +2,7 @@
import { usePathname, useRouter } from 'next/navigation';
import { useState } from 'react';
import { BottomNavigation, BottomNavigationAction, Paper, Fab, Box } from '@mui/material';
import { BottomNavigation, BottomNavigationAction, Paper, Fab, Box, IconButton } from '@mui/material';
import {
Home,
Timeline,
@@ -33,10 +33,13 @@ export const TabBar = () => {
aria-label="Primary navigation"
sx={{
position: 'fixed',
bottom: 0,
left: 0,
right: 0,
bottom: { xs: 0, md: 20 },
left: { xs: 0, md: '50%' },
right: { xs: 0, md: 'auto' },
transform: { xs: 'none', md: 'translateX(-50%)' },
width: { xs: '100%', md: '30%' },
zIndex: 1000,
borderRadius: { xs: 0, md: 2 },
}}
elevation={3}
>
@@ -50,6 +53,7 @@ export const TabBar = () => {
showLabels
sx={{
height: 64,
borderRadius: { xs: 0, md: 2 },
'& .MuiBottomNavigationAction-root': {
minWidth: 60,
'&.Mui-selected': {
@@ -60,7 +64,7 @@ export const TabBar = () => {
>
{tabs.map((tab) => {
if (tab.value === 'voice') {
// Center voice button placeholder
// Center voice button
return (
<Box
key="voice-placeholder"
@@ -70,7 +74,28 @@ export const TabBar = () => {
alignItems: 'center',
justifyContent: 'center',
}}
/>
>
<IconButton
aria-label="voice command"
onClick={() => {
const voiceButton = document.querySelector('[aria-label="voice input"]') as HTMLButtonElement;
if (voiceButton) {
voiceButton.click();
}
}}
sx={{
bgcolor: '#FF69B4',
color: 'white',
width: 48,
height: 48,
'&:hover': {
bgcolor: '#FF1493',
},
}}
>
<Mic />
</IconButton>
</Box>
);
}
return (
@@ -85,7 +110,7 @@ export const TabBar = () => {
</BottomNavigation>
</Paper>
{/* Voice Command Floating Button - Centered */}
{/* Voice Command Floating Button - Mobile Only */}
<Fab
color="secondary"
aria-label="voice command"
@@ -97,6 +122,7 @@ export const TabBar = () => {
}
}}
sx={{
display: { xs: 'flex', md: 'none' },
position: 'fixed',
bottom: 40,
left: '50%',
@@ -104,9 +130,9 @@ export const TabBar = () => {
zIndex: 1100,
width: 56,
height: 56,
bgcolor: 'secondary.main',
bgcolor: '#FF69B4',
'&:hover': {
bgcolor: 'secondary.dark',
bgcolor: '#FF1493',
},
}}
>