A simple habit tracking application that allows users to:
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ └── habits.ts # Habit-related API routes
│ └── index.ts # Main Hono server entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main React application
│ │ ├── HabitForm.tsx # Form for creating habits
│ │ ├── HabitList.tsx # List of habits with tracking
│ │ └── HabitCard.tsx # Individual habit card component
│ ├── index.html # Main HTML template
│ ├── index.tsx # Frontend React entry point
│ └── style.css # Custom styles
├── shared/
│ └── types.ts # Shared TypeScript types
└── README.md