import { TriangleAlert } from 'lucide-react' export default function AlertCard({ title, content }: { title: string; content: string }) { return (
{title}
{content}
) }