A comprehensive web application for tracking menstrual cycles, symptoms, and health insights.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── cycles.ts # Cycle CRUD operations
│ │ ├── symptoms.ts # Symptom tracking
│ │ └── static.ts # Static file serving
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── Calendar.tsx # Calendar view
│ │ ├── CycleForm.tsx # Period logging form
│ │ ├── SymptomForm.tsx # Symptom tracking form
│ │ └── Insights.tsx # Analytics and insights
│ ├── index.html # Main HTML template
│ ├── index.tsx # React entry point
│ └── style.css # Custom styles
└── shared/
└── types.ts # Shared TypeScript types
All data is stored locally in your Val Town SQLite database. No data is shared with third parties.