A comprehensive sales pipeline management and analysis tool for sales teams.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── leads.ts # Lead CRUD operations
│ │ └── analytics.ts # Pipeline analytics endpoints
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── LeadForm.tsx # Lead creation/editing form
│ │ ├── LeadList.tsx # Lead listing and management
│ │ └── Dashboard.tsx # Analytics dashboard
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
└── types.ts # Shared TypeScript types
GET /api/leads - Get all leadsPOST /api/leads - Create a new leadPUT /api/leads/:id - Update a leadDELETE /api/leads/:id - Delete a leadGET /api/analytics - Get pipeline analytics