import { AnimatePresence, motion } from "framer-motion"; import { useToastStore } from "@/stores/toast-store"; const TYPE_STYLES = { success: "bg-pylon-accent/10 text-pylon-accent border-pylon-accent/20", error: "bg-pylon-danger/10 text-pylon-danger border-pylon-danger/20", info: "bg-pylon-surface text-pylon-text border-border", } as const; export function ToastContainer() { const toasts = useToastStore((s) => s.toasts); return (