Remove pwopose page

This commit is contained in:
2026-04-28 12:34:20 +04:00
parent ff0905d7db
commit e1a5e082a2
3 changed files with 1 additions and 171 deletions
+1 -6
View File
@@ -15,7 +15,6 @@ import {useMediaQuery} from '@mui/material'
import MusicNoteIcon from '@mui/icons-material/MusicNote'
import RecordVoiceOverIcon from '@mui/icons-material/RecordVoiceOver'
import HomeIcon from '@mui/icons-material/Home'
import EditNoteIcon from '@mui/icons-material/EditNote'
import VolunteerActivismIcon from '@mui/icons-material/VolunteerActivism'
const PREFIX = 'navigasyon'
@@ -40,8 +39,7 @@ const tabRouteHref = [
'/',
'/sipote',
'/paroles',
'/awtis',
'/pwopose'
'/awtis'
]
const tabPath = {
@@ -49,7 +47,6 @@ const tabPath = {
sipote: 1,
paroles: 2,
awtis: 3,
pwopose: 4
}
function TabPanel(props) {
@@ -126,7 +123,6 @@ export default function Navigasyon() {
<Tab icon={<VolunteerActivismIcon />} aria-label='Nous soutenir' {...a11yProps(1)} />
<Tab icon={<MusicNoteIcon />} aria-label='Paroles' {...a11yProps(2)} />
<Tab icon={<RecordVoiceOverIcon />} aria-label='Artistes' {...a11yProps(3)} />
<Tab icon={<EditNoteIcon />} aria-label='Proposer des paroles' {...a11yProps(4)} />
</Tabs>
}
</AppBar>
@@ -134,7 +130,6 @@ export default function Navigasyon() {
<TabPanel value={value} index={1} />
<TabPanel value={value} index={2} />
<TabPanel value={value} index={3} />
<TabPanel value={value} index={4} />
</div>
</Appdiv>
)