data.ts 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. import { BookOpen, Droplets, Moon, Footprints } from 'lucide-react';
  2. export const user = {
  3. name: "Alex",
  4. karma: 1250,
  5. todayPotential: 45,
  6. streak: 12,
  7. level: "习惯探索者"
  8. };
  9. export const habits = [
  10. {
  11. id: '1',
  12. name: '喝水',
  13. icon: Droplets,
  14. streak: 7,
  15. reward: '1-3',
  16. completed: false,
  17. type: 'kindling', // Fire habit
  18. category: '健康'
  19. },
  20. {
  21. id: '2',
  22. name: '阅读5页',
  23. icon: BookOpen,
  24. streak: 3,
  25. reward: '5',
  26. completed: true,
  27. type: 'kindling',
  28. category: '成长'
  29. },
  30. {
  31. id: '3',
  32. name: '早睡',
  33. icon: Moon,
  34. streak: 12,
  35. reward: '10',
  36. completed: false,
  37. type: 'regular',
  38. category: '健康'
  39. },
  40. {
  41. id: '4',
  42. name: '晨跑',
  43. icon: Footprints,
  44. streak: 0,
  45. reward: '8',
  46. completed: false,
  47. type: 'regular',
  48. category: '健康'
  49. }
  50. ];
  51. export const quotes = [
  52. "今天的坚持是明天的复利。",
  53. "跬步千里,积微成著。",
  54. "持之以恒是掌握精髓的关键。"
  55. ];
  56. export const transactions = [
  57. {
  58. id: '1',
  59. category: '健康饮食',
  60. amount: -15,
  61. karma: 5,
  62. type: 'expense',
  63. date: '2023-10-27 12:30'
  64. },
  65. {
  66. id: '2',
  67. category: '工资',
  68. amount: 5000,
  69. karma: 0,
  70. type: 'income',
  71. date: '2023-10-25 09:00'
  72. },
  73. {
  74. id: '3',
  75. category: '垃圾食品',
  76. amount: -10,
  77. karma: -5,
  78. type: 'expense',
  79. date: '2023-10-24 18:00'
  80. }
  81. ];