'use client' /** * 清澈呼吸 — 输入区域 * Apple 风格呼吸光晕 + 下拉标签选项 * 底部排版由 page.tsx 注入 */ import { useState } from 'react' import { useTranslations } from 'next-intl' import { AppIcon } from '@/components/ui/icons' import { InlineSelector } from './InlineSelector' import { STYLE_OPTIONS, RATIO_OPTIONS, QUALITY_OPTIONS, } from './shared' export default function VariantClearBreath({ children }: { children?: React.ReactNode }) { const t = useTranslations('workspaceRedesign') const [selectedStyle, setSelectedStyle] = useState('anime') const [selectedRatio, setSelectedRatio] = useState('16:9') const [selectedQuality, setSelectedQuality] = useState('high') const [inputValue, setInputValue] = useState('') return (
{/* 自定义呼吸动画 */}

✨ {t('quickActions.title')}

{t('inputPlaceholder')}

{/* 呼吸光晕容器 */}