File size: 296 Bytes
24f95f0
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
// Placeholder for future simulation chat interface
export default function SimulationChat() {
  return (
    <div className="bg-gray-900/50 border border-gray-800 rounded-lg p-6">
      <p className="text-gray-400 text-center">
        Chat interface coming soon...
      </p>
    </div>
  );
}