AlertBanner

Organism

Bilgi, uyarı, hata ve başarı mesajları için renk-kodlu banner. dismissible ve action desteği.

Info

Preview
Code
<%- include('modules/ui/AlertBanner', {
  variant: 'info',
  title: 'Heads up',
  message: 'You can update your preferences at any time.'
}) %>

Success

Preview
Code
<%- include('modules/ui/AlertBanner', {
  variant: 'success',
  title: 'Changes saved',
  message: 'Your profile has been updated successfully.'
}) %>

Warning

Preview
Code
<%- include('modules/ui/AlertBanner', {
  variant: 'warning',
  title: 'Subscription expiring',
  message: 'Your plan expires in 3 days.',
  actionLabel: 'Renew plan'
}) %>

Error

Preview
Code
<%- include('modules/ui/AlertBanner', {
  variant: 'error',
  title: 'Payment failed',
  message: 'We could not charge your card.',
  actionLabel: 'Update billing',
  actionHref: '/billing'
}) %>

Dismissible

Preview
Code
<%- include('modules/ui/AlertBanner', {
  variant: 'info',
  message: 'This alert can be dismissed.',
  dismissible: true
}) %>
Source modules/ui/AlertBanner.ejs