A comprehensive web application for managing your schedule and to-do list with reminders.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ └── routes/
│ ├── events.ts # Schedule event routes
│ └── todos.ts # To-do list routes
│ ├── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── Calendar.tsx # Calendar view component
│ │ ├── TodoList.tsx # To-do list component
│ │ └── EventForm.tsx # Form for adding/editing events
│ ├── index.html # Main HTML template
│ ├── index.tsx # Frontend entry point
│ └── style.css # Custom styles
└── shared/
└── types.ts # Shared TypeScript types