import { Info } from "lucide-react" import { Card, CardContent } from "@/components/ui/card" interface ModelCardProps { title: string text: string } export function ModelCard({ title, text }: ModelCardProps) { return (

{title}

{text}

) }