import { useLanguage } from '@/i18n/context' export default function BetaNotice() { const { isZh } = useLanguage() return (
🚧

{isZh ? 'Beta 阶段' : 'Beta Stage'}

{isZh ? '当前功能未完成,接口可能随时变更。正式版本发布前请勿用于生产环境。' : 'Current features are incomplete and the API may change at any time. Please do not use in production environments before the official release.'}

) }