1
0

agent-description.tsx 411 B

12345678910111213
  1. interface AgentDescriptionProps {
  2. description: string
  3. }
  4. export function AgentDescription({ description }: AgentDescriptionProps) {
  5. return (
  6. <div className="bg-white p-6 rounded-lg border border-gray-200 shadow-sm">
  7. <h2 className="text-2xl font-orbitron mb-4 text-gray-800">About</h2>
  8. <p className="font-roboto-mono text-gray-600 leading-relaxed text-sm">{description}</p>
  9. </div>
  10. )
  11. }