// Page 4: Onboarding - 首次使用引导页 import { ChevronRightIcon } from 'lucide-react'; const steps = [ { emoji: '📖', step: 1, title: '建立你的知识库', desc: '上传资料、粘贴文本或手动添加,让知习帮你整理知识体系', highlight: '导入 PDF · 粘贴笔记 · 链接导入', }, { emoji: '🤔', step: 2, title: '主动输出 · 真实检验', desc: 'AI 发起回忆测试,用自己的话解释知识点,检验真实掌握程度', highlight: '回忆测试 · 费曼解释 · AI 评分', }, { emoji: '🎯', step: 3, title: 'AI 找到薄弱点', desc: '智能分析你的输出,精准定位哪些知识点还需要巩固', highlight: '薄弱分析 · 待巩固项 · 知识图谱', }, ]; const OnboardingPage = () => { return (
{/* Progress indicator */}
{[1, 2, 3].map((i) => (
))}
{/* Top illustration area */}
{/* Decorative circles */}
{/* Core content */}
{steps[0].emoji}
{/* Learning loop diagram */}
{['输入', '输出', 'AI 分析', '复习'].map((s, i) => (
{s}
{i < 3 && ( )}
))}
{/* Steps */}
{steps.map((s, i) => (
{s.emoji}

0{s.step}{s.title}

{s.desc}

{s.highlight}

))}
{/* Bottom CTA */}

跳过引导,直接开始

); }; export default OnboardingPage;