Compare commits
2 commits
81db5d2d9f
...
49cdec6e6c
| Author | SHA1 | Date | |
|---|---|---|---|
| 49cdec6e6c | |||
| b4e2b0a173 |
4 changed files with 15 additions and 13 deletions
|
|
@ -9,7 +9,7 @@ import {
|
||||||
Calendar,
|
Calendar,
|
||||||
ShoppingBag,
|
ShoppingBag,
|
||||||
MessageSquare,
|
MessageSquare,
|
||||||
Settings,
|
// Settings, // TODO: Uncomment when Settings page is implemented
|
||||||
Sun,
|
Sun,
|
||||||
Moon
|
Moon
|
||||||
} from 'lucide-vue-next'
|
} from 'lucide-vue-next'
|
||||||
|
|
@ -115,7 +115,7 @@ const isActive = (href: string) => {
|
||||||
<LanguageSwitcher />
|
<LanguageSwitcher />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Settings Link -->
|
<!-- TODO: Review implementing Settings page in the future
|
||||||
<router-link
|
<router-link
|
||||||
to="/settings"
|
to="/settings"
|
||||||
:class="[
|
:class="[
|
||||||
|
|
@ -128,6 +128,7 @@ const isActive = (href: string) => {
|
||||||
<Settings class="h-5 w-5 shrink-0" />
|
<Settings class="h-5 w-5 shrink-0" />
|
||||||
Settings
|
Settings
|
||||||
</router-link>
|
</router-link>
|
||||||
|
-->
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
|
||||||
|
|
@ -170,7 +170,7 @@ const navigateToNotifications = () => {
|
||||||
</span>
|
</span>
|
||||||
</Button>
|
</Button>
|
||||||
</DropdownMenuTrigger>
|
</DropdownMenuTrigger>
|
||||||
<DropdownMenuContent align="end" class="w-56">
|
<DropdownMenuContent align="end" class="w-64">
|
||||||
<!-- Wallet Balance -->
|
<!-- Wallet Balance -->
|
||||||
<DropdownMenuItem @click="() => router.push('/wallet')" class="gap-2">
|
<DropdownMenuItem @click="() => router.push('/wallet')" class="gap-2">
|
||||||
<Wallet class="h-4 w-4 text-muted-foreground" />
|
<Wallet class="h-4 w-4 text-muted-foreground" />
|
||||||
|
|
|
||||||
|
|
@ -10,13 +10,13 @@ import {
|
||||||
SheetTitle,
|
SheetTitle,
|
||||||
} from '@/components/ui/sheet'
|
} from '@/components/ui/sheet'
|
||||||
import { Button } from '@/components/ui/button'
|
import { Button } from '@/components/ui/button'
|
||||||
import { Separator } from '@/components/ui/separator'
|
// import { Separator } from '@/components/ui/separator' // TODO: Uncomment when Settings page is implemented
|
||||||
import {
|
import {
|
||||||
Home,
|
Home,
|
||||||
Calendar,
|
Calendar,
|
||||||
ShoppingBag,
|
ShoppingBag,
|
||||||
MessageSquare,
|
MessageSquare,
|
||||||
Settings,
|
// Settings, // TODO: Uncomment when Settings page is implemented
|
||||||
Sun,
|
Sun,
|
||||||
Moon,
|
Moon,
|
||||||
} from 'lucide-vue-next'
|
} from 'lucide-vue-next'
|
||||||
|
|
@ -136,9 +136,9 @@ const navigateTo = (href: string) => {
|
||||||
<LanguageSwitcher />
|
<LanguageSwitcher />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- TODO: Review implementing Settings page in the future
|
||||||
<Separator />
|
<Separator />
|
||||||
|
|
||||||
<!-- Settings Link -->
|
|
||||||
<button
|
<button
|
||||||
@click="navigateTo('/settings')"
|
@click="navigateTo('/settings')"
|
||||||
:class="[
|
:class="[
|
||||||
|
|
@ -151,6 +151,7 @@ const navigateTo = (href: string) => {
|
||||||
<Settings class="h-5 w-5 shrink-0" />
|
<Settings class="h-5 w-5 shrink-0" />
|
||||||
Settings
|
Settings
|
||||||
</button>
|
</button>
|
||||||
|
-->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</SheetContent>
|
</SheetContent>
|
||||||
|
|
|
||||||
|
|
@ -79,13 +79,13 @@ export function useModularNavigation() {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// Base module items (always available)
|
// TODO: Review implementing Relay Hub Status page in the future
|
||||||
items.push({
|
// items.push({
|
||||||
name: 'Relay Hub Status',
|
// name: 'Relay Hub Status',
|
||||||
href: '/relay-hub-status',
|
// href: '/relay-hub-status',
|
||||||
icon: 'Activity',
|
// icon: 'Activity',
|
||||||
requiresAuth: true
|
// requiresAuth: true
|
||||||
})
|
// })
|
||||||
|
|
||||||
return items
|
return items
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue