A platform that helps people raise funds for medical emergencies, similar to Ketto.
High medical costs burden families during emergencies. MediCrowd provides a transparent and efficient way to raise funds from the community.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Schema definitions
│ │ └── queries.ts # DB query functions
│ ├── routes/ # Route modules
│ │ ├── auth.ts # Authentication routes
│ │ ├── campaigns.ts # Campaign management
│ │ ├── donations.ts # Donation processing
│ │ └── verification.ts # Verification system
│ └── index.ts # Main entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx
│ │ ├── CampaignCard.tsx
│ │ ├── CampaignForm.tsx
│ │ ├── DonationForm.tsx
│ │ └── Header.tsx
│ ├── pages/
│ │ ├── Home.tsx
│ │ ├── CampaignDetail.tsx
│ │ ├── CreateCampaign.tsx
│ │ └── Dashboard.tsx
│ ├── index.html
│ └── index.tsx
└── shared/
├── types.ts # Shared type definitions
└── utils.ts # Shared utility functions
Visit the live demo at: MediCrowd Demo