| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- import { BookOpen, Droplets, Moon, Footprints } from 'lucide-react';
- export const user = {
- name: "Alex",
- karma: 1250,
- todayPotential: 45,
- streak: 12,
- level: "习惯探索者"
- };
- export const habits = [
- {
- id: '1',
- name: '喝水',
- icon: Droplets,
- streak: 7,
- reward: '1-3',
- completed: false,
- type: 'kindling', // Fire habit
- category: '健康'
- },
- {
- id: '2',
- name: '阅读5页',
- icon: BookOpen,
- streak: 3,
- reward: '5',
- completed: true,
- type: 'kindling',
- category: '成长'
- },
- {
- id: '3',
- name: '早睡',
- icon: Moon,
- streak: 12,
- reward: '10',
- completed: false,
- type: 'regular',
- category: '健康'
- },
- {
- id: '4',
- name: '晨跑',
- icon: Footprints,
- streak: 0,
- reward: '8',
- completed: false,
- type: 'regular',
- category: '健康'
- }
- ];
- export const quotes = [
- "今天的坚持是明天的复利。",
- "跬步千里,积微成著。",
- "持之以恒是掌握精髓的关键。"
- ];
- export const transactions = [
- {
- id: '1',
- category: '健康饮食',
- amount: -15,
- karma: 5,
- type: 'expense',
- date: '2023-10-27 12:30'
- },
- {
- id: '2',
- category: '工资',
- amount: 5000,
- karma: 0,
- type: 'income',
- date: '2023-10-25 09:00'
- },
- {
- id: '3',
- category: '垃圾食品',
- amount: -10,
- karma: -5,
- type: 'expense',
- date: '2023-10-24 18:00'
- }
- ];
|