Input: Texts Messages in Thread: 5 Features: 5 functional tabs, add habits, monthly & weekly views, insights, dark mode toggle
Open this chat in IDE
// Enums for habit tracking app 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' }
Please wait while we set everything up