A comprehensive application for creating and managing automated client follow-up workflows after service delivery. Generate customizable templates with email reminders and feedback requests.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── workflows.ts # Workflow CRUD operations
│ │ ├── clients.ts # Client management
│ │ └── static.ts # Static file serving
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── WorkflowBuilder.tsx # Workflow creation interface
│ │ ├── ClientManager.tsx # Client management interface
│ │ └── Dashboard.tsx # Overview dashboard
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
└── types.ts # Shared TypeScript types