Nicholai 3e739877b4 feat(components): add new UI components for enhanced user experience
- Introduced multiple new components including AnimatedLink, Button, Calendar, Card, ColorSwatch, Divider, Filmstrip, FormContainer, FormField, GalleryCard, Heading, HeroOverlay, IdentitySection, ImmersionSection, NewArtistsSection, NewContactSection, NewHero, NewNavigation, Reveal, SectionLabel, StickySplit, and Toast.
- Each component is designed with responsive layouts and customizable styles to improve the overall UI consistency and interactivity.
- Implemented accessibility features and animations to enhance user engagement.

This commit significantly expands the component library, providing a robust foundation for building a cohesive user interface.
2025-11-25 03:00:50 -07:00

39 lines
1.1 KiB
TypeScript

import * as React from "react"
import { cn } from "@/lib/utils"
export interface ToastProps extends React.HTMLAttributes<HTMLDivElement> {
variant?: "success" | "alert"
title: string
description?: string
icon?: React.ReactNode
}
const Toast = React.forwardRef<HTMLDivElement, ToastProps>(
({ className, variant = "success", title, description, icon, ...props }, ref) => {
return (
<div
ref={ref}
className={cn(
"flex items-center gap-5 px-5 py-4 rounded-[14px] text-white",
"shadow-[var(--shadow-md)]",
variant === "success" && "bg-[var(--sage)]",
variant === "alert" && "bg-[var(--rose)]",
className,
)}
{...props}
>
<div className="w-8 h-8 rounded-lg bg-white/20 grid place-items-center font-semibold">
{icon || (variant === "success" ? "✓" : "!")}
</div>
<div>
<strong className="block text-[0.9rem]">{title}</strong>
{description && <span className="text-[0.8rem] opacity-90">{description}</span>}
</div>
</div>
)
},
)
Toast.displayName = "Toast"
export { Toast }