scene-outlines.ts 917 B

1234567891011121314151617181920212223242526272829
  1. import type { SceneOutline } from '../../../lib/types/generation';
  2. /** Mock SceneOutline data matching lib/types/generation.ts:SceneOutline */
  3. export const mockOutlines: SceneOutline[] = [
  4. {
  5. id: 'outline-0',
  6. type: 'slide' as const,
  7. title: '光合作用的基本概念',
  8. description: '介绍光合作用的定义和基本反应方程式',
  9. keyPoints: ['光合作用的定义', '反应方程式', '能量转换'],
  10. order: 0,
  11. },
  12. {
  13. id: 'outline-1',
  14. type: 'slide' as const,
  15. title: '光反应阶段',
  16. description: '光反应中光能的吸收与水的分解',
  17. keyPoints: ['光能吸收', '水的光解', 'ATP 与 NADPH 生成'],
  18. order: 1,
  19. },
  20. {
  21. id: 'outline-2',
  22. type: 'slide' as const,
  23. title: '暗反应阶段',
  24. description: '暗反应中碳固定与糖类合成',
  25. keyPoints: ['CO₂ 固定', 'C₃ 还原', '糖类合成'],
  26. order: 2,
  27. },
  28. ];