A professional mobile banking application for Access Bank with comprehensive banking features.
Authentication System
Account Management
Transfer Services
Security
├── backend/
│ ├── index.ts # Main API server
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database operations
│ └── routes/
│ ├── auth.ts # Authentication routes
│ ├── accounts.ts # Account management
│ └── transfers.ts # Transfer operations
├── frontend/
│ ├── index.html # Main HTML template
│ ├── index.tsx # React app entry point
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── Login.tsx # Login component
│ │ ├── Dashboard.tsx # Main dashboard
│ │ ├── Transfers.tsx # Transfer interface
│ │ └── History.tsx # Transaction history
│ └── style.css # Custom styles
└── shared/
├── types.ts # Shared TypeScript types
└── utils.ts # Shared utilities