
Habit Tracker App
Input: Texts
Messages in Thread: 5
Features: 5 functional tabs, add habits, monthly & weekly views, insights, dark mode toggle
React 19 + TSShadcnTailwind V4
export enum HabitCategory {
HEALTH = 'health',
FITNESS = 'fitness',
LEARNING = 'learning',
PRODUCTIVITY = 'productivity',
PERSONAL = 'personal',
OTHER = 'other'
}
export enum HabitFrequency {
DAILY = 'daily',
WEEKLY = 'weekly',
CUSTOM = 'custom'
}
export enum ViewType {
DAILY = 'daily',
WEEKLY = 'weekly',
MONTHLY = 'monthly',
INSIGHTS = 'insights',
SETTINGS = 'settings'
}
export enum BadgeType {
STREAK_7 = 'streak_7',
STREAK_30 = 'streak_30',
STREAK_100 = 'streak_100',
PERFECT_WEEK = 'perfect_week',
PERFECT_MONTH = 'perfect_month',
FIRST_HABIT = 'first_habit',
HABIT_MASTER = 'habit_master'
}
export enum ReminderTime {
MORNING = 'morning',
AFTERNOON = 'afternoon',
EVENING = 'evening',
CUSTOM = 'custom',
NONE = 'none'
}
Read-onlySetting up preview
Please wait while we set everything up