feat: integrate sonner for toast notifications and update project metadata

This commit is contained in:
Noste
2025-11-24 23:42:36 +01:00
parent a7388b8962
commit f33452dcb1
15 changed files with 1152 additions and 200 deletions
+8 -6
View File
@@ -7,12 +7,14 @@ const buttonVariants = cva(
{
variants: {
variant: {
default: 'bg-[#ff9329] text-black hover:bg-[#e58625]',
destructive: 'bg-destructive text-destructive-foreground hover:bg-destructive',
outline: 'border border-input bg-background hover:bg-accent hover:text-accent-foreground',
secondary: 'bg-secondary text-secondary-foreground hover:bg-secondary',
ghost: 'hover:bg-accent hover:text-accent-foreground',
link: 'text-primary underline-offset-4 hover:underline',
default: 'bg-[#ff9329] text-black hover:bg-[#e58625] cursor-pointer',
default_disabled: 'bg-[#ff9329] text-black opacity-50 cursor-not-allowed',
secondary: 'border border-[#ff9329] text-[#ff9329] cursor-pointer',
destructive: 'bg-destructive text-destructive-foreground hover:bg-destructive cursor-pointer',
outline: 'border border-input bg-background hover:bg-accent hover:text-accent-foreground cursor-pointer',
outline_disabled: 'border border-input bg-background text-muted-foreground opacity-50 cursor-not-allowed',
ghost: 'hover:bg-accent hover:text-accent-foreground cursor-pointer',
link: 'text-primary underline-offset-4 hover:underline cursor-pointer',
},
size: {
default: 'h-10 px-4 py-2',