A simple utility app that helps busy people (virtual assistants, remote workers, freelancers) stay consistent with their top 3 daily tasks.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database operations
│ ├── routes/
│ │ ├── api.ts # API endpoints
│ │ └── email.ts # Email handling
│ └── index.ts # Main server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── TaskForm.tsx # Task input form
│ │ └── Dashboard.tsx # Progress dashboard
│ ├── index.html # Main page
│ └── index.tsx # Frontend entry
├── shared/
│ └── types.ts # Shared TypeScript types
└── cron/
├── evening-reminder.ts # 8PM reminder cron
└── morning-reminder.ts # 9AM follow-up cron