A comprehensive bill management system for fabrication businesses with admin and customer portals.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database operations
│ ├── routes/
│ │ ├── auth.ts # Authentication routes
│ │ ├── bills.ts # Bill management
│ │ ├── payments.ts # Payment processing
│ │ └── static.ts # Static file serving
│ └── index.ts # Main server entry
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application
│ │ ├── Login.tsx # Login component
│ │ ├── AdminDashboard.tsx
│ │ ├── CustomerDashboard.tsx
│ │ ├── BillForm.tsx # Bill creation/editing
│ │ ├── BillList.tsx # Bill listing
│ │ ├── PaymentModal.tsx
│ │ └── BillPDF.tsx # PDF generation
│ ├── index.html
│ ├── index.tsx
│ └── style.css
└── shared/
└── types.ts # Shared TypeScript types
admin@fabrication.comadmin123