File size: 537 Bytes
6b7d17f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 (
    <Card className="overflow-hidden">
      <CardContent className="p-6 space-y-4">
        <div className="flex items-center gap-2">
          <Info className="h-5 w-5" />
          <h3 className="text-lg font-medium">{title}</h3>
        </div>
        <p>{text}</p>
      </CardContent>
    </Card>
  )
}