Files
page-agent/packages/website/src/components/BetaNotice.tsx
T

26 lines
928 B
TypeScript
Raw Normal View History

2026-01-30 16:47:23 +08:00
import { useLanguage } from '@/i18n/context'
2025-10-22 22:35:25 +08:00
2025-09-29 16:33:15 +08:00
export default function BetaNotice() {
2026-01-30 16:47:23 +08:00
const { isZh } = useLanguage()
2025-10-22 22:35:25 +08:00
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">
2025-11-26 20:41:55 +08:00
<div className="shrink-0">
2025-09-29 16:33:15 +08:00
<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">
2026-01-30 16:47:23 +08:00
{isZh ? 'Beta 阶段' : 'Beta Stage'}
2025-09-29 16:33:15 +08:00
</h3>
2026-01-30 16:47:23 +08:00
<p className="text-sm text-orange-700 dark:text-orange-300">
{isZh
? '当前功能未完成,接口可能随时变更。正式版本发布前请勿用于生产环境。'
: 'Current features are incomplete and the API may change at any time. Please do not use in production environments before the official release.'}
</p>
2025-09-29 16:33:15 +08:00
</div>
</div>
</div>
)
}