feat: Update PurchaseTicketDialog to enhance ticket purchase confirmation

- Modify PurchaseTicketDialog.vue to improve the ticket purchase success message and display a ticket icon.
- Add a button for users to easily navigate to their tickets area.
- Refactor the layout for better visual presentation of ticket information.
This commit is contained in:
padreug 2025-08-01 21:58:35 +02:00
parent 72e51ea10c
commit a6a65800a4
2 changed files with 13 additions and 9 deletions

View file

@ -27,7 +27,6 @@ const showProfileDialog = ref(false)
const navigation = computed<NavigationItem[]>(() => [
{ name: t('nav.home'), href: '/' },
{ name: t('nav.events'), href: '/events' },
{ name: 'My Tickets', href: '/my-tickets' },
{ name: t('nav.support'), href: '/support' },
])