Skip to content

MVP for issue #512 #694

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions rohtak_grievance_MVP/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# next.js
/.next/
/out/

# production
/build

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# env files
.env*

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
45 changes: 45 additions & 0 deletions rohtak_grievance_MVP/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Rohtak Grievance Redressal Chatbot MVP

This repository contains the MVP implementation for the [District-Level Chatbot for Grievance Redressal](https://github.com/Code4GovTech/C4GT/issues/512) project.

## πŸš€ Features

- **Bilingual Support**: Interface in both Hindi and English
- **Citizen Chatbot Interface**: WhatsApp-style interface for complaint registration
- **Admin Dashboard**: For officials to manage and respond to complaints
- **Department Routing**: Automatic routing to appropriate departments
- **Tracking System**: Unique IDs and status updates for complaints

## πŸ“Έ Screenshots

![Alt text](https://res.cloudinary.com/dllgawv0f/image/upload/v1746464949/roh_1_kayxvw.jpg)
![Alt text](https://res.cloudinary.com/dllgawv0f/image/upload/v1746465096/roh_6_aor0ll.jpg)
![Alt text](https://res.cloudinary.com/dllgawv0f/image/upload/v1746465097/roh_4_jwhopj.jpg)
![Alt text](https://res.cloudinary.com/dllgawv0f/image/upload/v1746465097/roh_2_jjbfok.jpg)
![Alt text](https://res.cloudinary.com/dllgawv0f/image/upload/v1746465098/roh_3_mk3dam.jpg)


## πŸ› οΈ Tech Stack

- Next.js for frontend
- PostgreSQL for backend (in full implementation)
- Tailwind CSS for styling

## 🚦 How to Run

1. Clone this repository
2. Run `npm install`
3. Run `npm start`
4. Open `http://localhost:3000` in your browser

## πŸ“ Implementation Notes

This MVP demonstrates the core user flows and interfaces for both citizens and administrators. The next steps would include:
- WhatsApp API integration
- Firebase/MongoDB backend implementation
- Authentication for admin users
- Department-specific views and analytics

## πŸ”— Related Links

- [Original Issue #512](https://github.com/Code4GovTech/C4GT/issues/512)
3 changes: 3 additions & 0 deletions rohtak_grievance_MVP/app/admin/loading.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Loading() {
return null
}
Loading