A modern fintech application that allows users to generate USD, GBP, and Nigerian accounts after completing the registration and KYC processes.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Schema definitions
│ │ ├── queries.ts # DB query functions
│ ├── routes/ # Route modules
│ │ ├── auth.ts # Authentication routes
│ │ ├── kyc.ts # KYC verification routes
│ │ ├── accounts.ts # Account generation routes
│ │ └── static.ts # Static file serving
│ └── index.ts # Main entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx
│ │ ├── auth/ # Authentication components
│ │ ├── kyc/ # KYC verification components
│ │ ├── accounts/ # Account management components
│ │ └── common/ # Shared UI components
│ ├── pages/
│ │ ├── Login.tsx
│ │ ├── Register.tsx
│ │ ├── KYC.tsx
│ │ ├── Dashboard.tsx
│ │ └── Accounts.tsx
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend JS entry point
└── shared/
├── types.ts # Shared type definitions
└── utils.ts # Shared utility functions
The application is hosted on Val Town. Visit the app to get started.