import { Card } from "@/components/ui/Card"; import { Chip } from "@/components/ui/Chip"; export function InsightCard({ title, body, tag }: { title: string; body: string; tag: string }) { return ( {tag}

{title}

{body}

); }