ConceptChat is an application that helps students review and practice educational concepts through interactive AI-powered conversations. The application provides a chat interface where students can engage in dialogue about various subjects, receive explanations, answer practice questions, and track their learning progress.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Schema definitions
│ │ └── queries.ts # DB query functions
│ ├── routes/ # Route modules
│ │ └── api.ts # API endpoints
│ └── index.ts # Main entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── Chat.tsx # Chat interface component
│ │ ├── ConceptList.tsx # List of available concepts
│ │ └── ProgressTracker.tsx # Learning progress component
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend JS entry point
└── shared/
└── types.ts # Shared types and interfaces