Files
page-agent/pages/components/BetaNotice.tsx
T

22 lines
673 B
TypeScript
Raw Normal View History

2025-10-22 22:35:25 +08:00
import { useTranslation } from 'react-i18next'
2025-09-29 16:33:15 +08:00
export default function BetaNotice() {
2025-10-22 22:35:25 +08:00
const { t } = useTranslation('common')
2025-09-29 16:33:15 +08:00
return (
<div className="bg-orange-50 dark:bg-orange-900/20 border border-orange-200 dark:border-orange-800 rounded-lg p-4 mb-8">
<div className="flex items-start">
<div className="flex-shrink-0">
<span className="text-xl">🚧</span>
</div>
<div className="ml-3">
<h3 className="text-sm font-medium text-orange-800 dark:text-orange-200 mb-1">
2025-10-22 22:35:25 +08:00
{t('beta_notice.title')}
2025-09-29 16:33:15 +08:00
</h3>
2025-10-22 22:35:25 +08:00
<p className="text-sm text-orange-700 dark:text-orange-300">{t('beta_notice.content')}</p>
2025-09-29 16:33:15 +08:00
</div>
</div>
</div>
)
}