Notifications
3 newMS
Marcus Silva assigned you to Q3 Revenue Report
10 minutes ago
EW
Emma Wilson commented on Homepage Redesign
45 minutes ago
JM
James Miller mentioned you in Sprint Planning
2 hours ago
SC
Sarah Chen uploaded Q2 Analytics Deck
3 hours ago
DK
David Kim requested review on API Integration PR
5 hours ago
Toast
Toast notification examples.
Toast Positions
<button @click="$dispatch('show-toast', { position: 'top-right', message: 'Successfully saved!', type: 'success' })" class="bg-alpine-500 hover:bg-alpine-600 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors">Top Right</button>
<!-- Toast rendering is handled by the Alpine x-data on #toastContainer -->
Toast Variants
<button @click="$dispatch('show-toast', { position: 'top-right', message: 'Operation completed successfully!', type: 'success' })" class="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors">Success Toast</button>
<button @click="$dispatch('show-toast', { position: 'top-right', message: 'Something went wrong!', type: 'error' })" class="bg-red-500 hover:bg-red-600 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors">Error Toast</button>
<!-- Toast rendering is handled by the Alpine x-data on #toastContainer -->
Simple Toast Trigger
<button @click="$dispatch('show-toast', { position: 'top-right', message: 'Your changes have been saved!', type: 'success' })" class="bg-green-500 hover:bg-green-600 text-white px-5 py-2.5 rounded-lg text-sm font-medium transition-colors">Show Success Toast</button>
<!-- Toast rendering is handled by the Alpine x-data on #toastContainer -->