A web application designed to support daily stress and mood awareness through quick check-ins, guided regulation exercises, reflections, and simple trend visualization.
This project is currently in early development. Week 1 focuses on wireframes, UI/UX design, and building the frontend backbone using HTML, CSS, and JavaScript.
- Daily stress/mood check-in (1–5 scale)
- Tag-based emotional context
- Text reflection entry
- Guided regulation exercises (box breathing, 5-4-3-2-1 grounding, short body scans)
- Simple stress trend visualization
- Notifications
- AI-generated recommendations
- Social or sharing features
- Advanced analytics
- HTML
- CSS
- JavaScript
- Python (FastAPI)
- SQLite or Firebase
project-name/
│
├── frontend/
│ ├── css/
│ ├── js/
│ ├── components/
│ ├── index.html
│ ├── checkin.html
│ ├── exercises.html
│ └── trends.html
│
├── backend/
│
└── README.md
git clone https://github.com/your-org/project-name.git
cd project-name
Using VS Code:
code .
During Week 1 development, the frontend can be run by opening:
frontend/index.html
in your browser.
Backend setup instructions will be added in later phases.
Do not commit directly to main.
Create a feature branch for all work:
git checkout -b feature/feature-name
Example:
git checkout -b feature/checkin-ui
After making changes:
git add .
git commit -m "Describe your change"
git push origin feature/feature-name
Open a Pull Request for review before merging.
- Pull latest changes before starting work.
- Create a new feature branch.
- Keep commits focused and descriptive.
- Open a Pull Request for review.