{"id":27093528,"url":"https://github.com/mudasir45/banking-system","last_synced_at":"2026-04-29T23:31:59.801Z","repository":{"id":286181678,"uuid":"960635131","full_name":"mudasir45/banking-system","owner":"mudasir45","description":" A modern, responsive banking application frontend built with Next.js and React, featuring secure authentication, comprehensive dashboard, transaction management, and advanced security controls.","archived":false,"fork":false,"pushed_at":"2025-04-04T19:26:02.000Z","size":198,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T20:47:46.874Z","etag":null,"topics":["banking","bankingapplication","dashboard","fintech","frontend","nextjs","nextjs14-typescript","reactjs","secure"],"latest_commit_sha":null,"homepage":"https://banking-system-chi.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mudasir45.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-04-04T19:23:52.000Z","updated_at":"2025-04-04T19:32:27.000Z","dependencies_parsed_at":"2025-04-04T20:29:53.428Z","dependency_job_id":"593f3f37-3ebe-46b9-8b5c-1ae6b3ee4c92","html_url":"https://github.com/mudasir45/banking-system","commit_stats":null,"previous_names":["mudasir45/banking-system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mudasir45/banking-system","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mudasir45%2Fbanking-system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mudasir45%2Fbanking-system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mudasir45%2Fbanking-system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mudasir45%2Fbanking-system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mudasir45","download_url":"https://codeload.github.com/mudasir45/banking-system/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mudasir45%2Fbanking-system/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32448399,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"ssl_error","status_checked_at":"2026-04-29T22:10:49.234Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["banking","bankingapplication","dashboard","fintech","frontend","nextjs","nextjs14-typescript","reactjs","secure"],"created_at":"2025-04-06T08:24:26.852Z","updated_at":"2026-04-29T23:31:59.749Z","avatar_url":"https://github.com/mudasir45.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SecureBank - Modern Banking Application\n\n![SecureBank](https://via.placeholder.com/800x400?text=SecureBank+Application)\n\n## Overview\n\nSecureBank is a modern, responsive banking application frontend built with Next.js and React. It provides a comprehensive user interface for banking operations with a focus on security, user experience, and modern design principles.\n\n## Features\n\n- **Authentication System**\n\n  - Secure login with two-factor authentication\n  - User registration with validation\n  - Password recovery\n\n- **Dashboard Overview**\n\n  - Account summaries and balances\n  - Recent transactions\n  - Financial statistics\n  - Quick actions\n\n- **Transaction Management**\n\n  - Transaction history with advanced filtering\n  - Transaction details and categorization\n  - Spending analytics\n\n- **Fund Transfers**\n\n  - Transfer between accounts\n  - Manage frequent recipients\n  - Transfer receipts and confirmations\n\n- **Account Management**\n\n  - Profile settings\n  - Personal information updates\n  - Document upload for verification\n\n- **Security Features**\n  - Security score dashboard\n  - Two-factor authentication management\n  - Login activity monitoring\n  - Security alerts\n  - Password management\n\n## Technologies\n\n- **Frontend Framework**: Next.js 14 (App Router)\n- **UI Library**: React 18\n- **Styling**: TailwindCSS\n- **Form Handling**: React Hook Form with Zod validation\n- **Icons**: Lucide React\n- **Language**: TypeScript\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 18.17 or later\n- npm or yarn\n\n### Installation\n\n1. Clone the repository\n\n```bash\ngit clone https://github.com/yourusername/banking-system.git\ncd banking-system\n```\n\n2. Install dependencies\n\n```bash\nnpm install\n# or\nyarn install\n```\n\n3. Start the development server\n\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\n4. Open [http://localhost:3000](http://localhost:3000) with your browser to see the application\n\n## Project Structure\n\n```\n├── public/               # Static assets\n├── src/\n│   ├── app/              # App router pages\n│   │   ├── (auth)/       # Authentication pages (login, register)\n│   │   ├── (dashboard)/  # Dashboard and authenticated pages\n│   │   ├── page.tsx      # Default page\n│   │   └── (other pages) # Additional pages\n│   ├── components/       # React components\n│   │   ├── dashboard/    # Dashboard-specific components\n│   │   ├── ui/           # Reusable UI components\n│   │   └── (other components)\n│   ├── styles/           # Global styles\n│   └── (other directories)\n```\n\n## Deployment\n\nThe easiest way to deploy this application is to use [Vercel](https://vercel.com/new?utm_source=github\u0026utm_medium=readme\u0026utm_campaign=next-example):\n\n[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fyourusername%2Fbanking-system)\n\n## License\n\n[MIT](LICENSE)\n\n## Learn More\n\nTo learn more about Next.js, take a look at the following resources:\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.\n\nYou can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmudasir45%2Fbanking-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmudasir45%2Fbanking-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmudasir45%2Fbanking-system/lists"}