'use client' import { Key, Plus, Trash2, Copy, Eye, EyeOff } from 'lucide-react' export default function APIKeys() { return (

مفاتيح API

إدارة مفاتيح الوصول للـ API

💡 معلومات مهمة

{[ { name: 'Production API Key', key: 'sk_live_abc123...', created: '2024-01-01', lastUsed: '2024-01-06' }, { name: 'Development API Key', key: 'sk_test_xyz789...', created: '2024-01-01', lastUsed: '2024-01-05' } ].map((apiKey, index) => (

{apiKey.name}

تم الإنشاء: {apiKey.created}

{apiKey.key}
آخر استخدام: {apiKey.lastUsed}
نشط
))}
) }