gitextract_639vv6hg/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.yml │ │ ├── config.yml │ │ ├── enhancement.yml │ │ ├── feature.yml │ │ └── other.yml │ ├── PULL_REQUEST_TEMPLATE/ │ │ └── pull_request_template.md │ ├── scripts/ │ │ └── badge-automation.js │ └── workflows/ │ ├── badge-automation.yml │ └── translate.yml ├── .gitignore ├── .gitmodules ├── .idea/ │ ├── .gitignore │ ├── chimoney-community-project.iml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GSOC/ │ ├── Contributor Guide.md │ └── Project Ideas.md ├── LICENSE ├── README-BN.md ├── README-CN.md ├── README-ES.md ├── README-GM.md ├── README-HN.md ├── README-JP.md ├── README-KO.md ├── README.md ├── ai-passport-and-wallet-examples/ │ ├── .gitignore │ ├── README.md │ ├── crewai-support-agent/ │ │ ├── README.md │ │ ├── requirements.txt │ │ └── support_agent.py │ ├── data-processing-agent/ │ │ ├── README.md │ │ ├── data_agent.py │ │ └── requirements.txt │ └── langchain-research-agent/ │ ├── README.md │ ├── requirements.txt │ └── research_agent.py └── submissions/ ├── .gitkeep ├── Articles/ │ ├── Contributing-to-Chimoney-Hacktoberfest.md │ ├── Flexible-payout-solutions.md │ ├── GlobalPayoutGuide.md │ ├── Quickstart_Guide.md │ ├── README.md │ ├── Update-Authentication-page.md │ ├── chimoney-global-data-annotators.md │ ├── global-payouts-non-profits.md │ ├── payout-digital-marketplaces.md │ └── tutorial_on_sending_p2p_Interledger _payments.md ├── Chimoney-Python/ │ ├── LICENSE │ ├── README.md │ ├── build/ │ │ └── lib/ │ │ └── pychimoney/ │ │ └── __init__.py │ ├── chimoney/ │ │ ├── AI.py │ │ ├── Account.py │ │ ├── Base.py │ │ ├── Chimoney.py │ │ ├── Errors.py │ │ ├── Info.py │ │ ├── Payments.py │ │ ├── Payouts.py │ │ ├── Redeem.py │ │ ├── SubAccount.py │ │ ├── Wallet.py │ │ └── __init__.py │ ├── examples/ │ │ ├── chimoney_examples.py │ │ └── test.py │ ├── setup.py │ └── tests/ │ └── __init__.py ├── Chimoney-Slackbot/ │ ├── .gitignore │ ├── Readme.md │ ├── main.py │ └── utils/ │ ├── app/ │ │ ├── __init__.py │ │ ├── models.py │ │ └── views.py │ ├── bot.py │ ├── collation.py │ ├── functions.py │ ├── rtm.py │ └── run.py ├── Chimoney-Slackbot-V2/ │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── modules/ │ │ ├── choices.py │ │ ├── giveaway.py │ │ ├── sendchimoney.py │ │ └── validators.py │ ├── requirements.txt │ ├── slackbot.py │ └── tests/ │ ├── __init__.py │ └── validator_tests.py ├── Chisend/ │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── bots/ │ │ ├── chisend.py │ │ ├── entrypoint.sh │ │ ├── main.py │ │ ├── oauth-key-gen.py │ │ └── utils.py │ └── requirements.txt ├── Dev focused articles/ │ └── top-3-payment-challenges-solutions-ifeoluwa-favour ├── FAQs/ │ └── FAQs.md ├── GetStarted/ │ ├── Blogs.html │ ├── README.md │ └── style.css ├── Proposed-Chimoney-Copy/ │ └── ChimoneyUXCopy.md ├── chiconnect-bank-api-payout/ │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── postcss.config.cjs │ ├── src/ │ │ ├── App.jsx │ │ ├── index.css │ │ ├── main.jsx │ │ └── service/ │ │ └── fetchApi.js │ ├── tailwind.config.cjs │ └── vite.config.js ├── chiconnect-giftcard-payout/ │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── postcss.config.cjs │ ├── src/ │ │ ├── App.jsx │ │ ├── components/ │ │ │ ├── Giftcard.jsx │ │ │ └── Giftcards.jsx │ │ ├── index.css │ │ ├── main.jsx │ │ └── service/ │ │ └── fetchApi.js │ ├── tailwind.config.cjs │ └── vite.config.js ├── chiconnect-laravel-web-app/ │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── Laravel SDK Installation and Setup Guide.md │ ├── Procfile │ ├── README.md │ ├── app/ │ │ ├── Console/ │ │ │ └── Kernel.php │ │ ├── Exceptions/ │ │ │ └── Handler.php │ │ ├── Http/ │ │ │ ├── Controllers/ │ │ │ │ ├── AccountController.php │ │ │ │ ├── Auth/ │ │ │ │ │ ├── AuthenticatedSessionController.php │ │ │ │ │ ├── ConfirmablePasswordController.php │ │ │ │ │ ├── EmailVerificationNotificationController.php │ │ │ │ │ ├── EmailVerificationPromptController.php │ │ │ │ │ ├── NewPasswordController.php │ │ │ │ │ ├── PasswordResetLinkController.php │ │ │ │ │ ├── RegisteredUserController.php │ │ │ │ │ └── VerifyEmailController.php │ │ │ │ ├── Controller.php │ │ │ │ ├── PayoutController.php │ │ │ │ └── ProfileController.php │ │ │ ├── Kernel.php │ │ │ ├── Livewire/ │ │ │ │ ├── Auth/ │ │ │ │ │ └── RegisterUser.php │ │ │ │ ├── ProcessAirtime.php │ │ │ │ ├── ProcessBank.php │ │ │ │ └── Username.php │ │ │ ├── Middleware/ │ │ │ │ ├── Authenticate.php │ │ │ │ ├── EncryptCookies.php │ │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ │ ├── RedirectIfAuthenticated.php │ │ │ │ ├── TrimStrings.php │ │ │ │ ├── TrustHosts.php │ │ │ │ ├── TrustProxies.php │ │ │ │ ├── ValidateSignature.php │ │ │ │ └── VerifyCsrfToken.php │ │ │ └── Requests/ │ │ │ └── Auth/ │ │ │ └── LoginRequest.php │ │ ├── Models/ │ │ │ ├── Payout.php │ │ │ ├── Transaction.php │ │ │ ├── TransactionReference.php │ │ │ └── User.php │ │ ├── Providers/ │ │ │ ├── AppServiceProvider.php │ │ │ ├── AuthServiceProvider.php │ │ │ ├── BroadcastServiceProvider.php │ │ │ ├── EventServiceProvider.php │ │ │ └── RouteServiceProvider.php │ │ ├── Support/ │ │ │ ├── Chiconnect/ │ │ │ │ ├── Account.php │ │ │ │ ├── Info.php │ │ │ │ ├── Payout.php │ │ │ │ ├── SubAccount.php │ │ │ │ └── Wallet.php │ │ │ └── Helpers.php │ │ └── View/ │ │ └── Components/ │ │ ├── AppLayout.php │ │ └── GuestLayout.php │ ├── artisan │ ├── bootstrap/ │ │ ├── app.php │ │ └── cache/ │ │ └── .gitignore │ ├── composer.json │ ├── config/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── broadcasting.php │ │ ├── cache.php │ │ ├── chimoney.php │ │ ├── cors.php │ │ ├── country_code.php │ │ ├── database.php │ │ ├── filesystems.php │ │ ├── hashing.php │ │ ├── logging.php │ │ ├── mail.php │ │ ├── queue.php │ │ ├── sanctum.php │ │ ├── services.php │ │ ├── session.php │ │ └── view.php │ ├── database/ │ │ ├── .gitignore │ │ ├── factories/ │ │ │ └── UserFactory.php │ │ ├── migrations/ │ │ │ ├── 2014_10_12_000000_create_users_table.php │ │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ │ │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ │ │ ├── 2022_10_17_080103_add_username_to_users_table.php │ │ │ ├── 2022_10_17_194518_create_transactions_table.php │ │ │ ├── 2022_10_20_180113_add_chi_wallet_id_to_users_table.php │ │ │ ├── 2022_10_20_204612_create_payouts_table.php │ │ │ ├── 2022_10_22_165728_create_transaction_references_table.php │ │ │ └── 2022_10_22_171931_alter_type_column_in_payouts_table.php │ │ └── seeders/ │ │ └── DatabaseSeeder.php │ ├── lang/ │ │ └── en/ │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── package.json │ ├── phpunit.xml │ ├── postcss.config.js │ ├── public/ │ │ ├── .htaccess │ │ ├── index.php │ │ └── robots.txt │ ├── resources/ │ │ ├── css/ │ │ │ └── app.css │ │ ├── js/ │ │ │ ├── app.js │ │ │ └── bootstrap.js │ │ └── views/ │ │ ├── account/ │ │ │ └── topup-user.blade.php │ │ ├── auth/ │ │ │ ├── confirm-password.blade.php │ │ │ ├── forgot-password.blade.php │ │ │ ├── login.blade.php │ │ │ ├── register.blade.php │ │ │ ├── reset-password.blade.php │ │ │ └── verify-email.blade.php │ │ ├── components/ │ │ │ ├── application-logo.blade.php │ │ │ ├── auth-card.blade.php │ │ │ ├── auth-session-status.blade.php │ │ │ ├── dropdown-link.blade.php │ │ │ ├── dropdown.blade.php │ │ │ ├── input-error.blade.php │ │ │ ├── input-label.blade.php │ │ │ ├── modal.blade.php │ │ │ ├── nav-link.blade.php │ │ │ ├── primary-button.blade.php │ │ │ ├── responsive-nav-link.blade.php │ │ │ └── text-input.blade.php │ │ ├── dashboard.blade.php │ │ ├── layouts/ │ │ │ ├── app.blade.php │ │ │ ├── guest.blade.php │ │ │ └── navigation.blade.php │ │ ├── livewire/ │ │ │ ├── auth/ │ │ │ │ └── register-user.blade.php │ │ │ ├── process-airtime.blade.php │ │ │ ├── process-bank.blade.php │ │ │ └── username.blade.php │ │ ├── payout/ │ │ │ ├── airtime.blade.php │ │ │ ├── bank.blade.php │ │ │ └── history.blade.php │ │ ├── profile/ │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── transfer/ │ │ │ ├── create.blade.php │ │ │ └── history.blade.php │ │ └── welcome.blade.php │ ├── routes/ │ │ ├── api.php │ │ ├── auth.php │ │ ├── channels.php │ │ ├── console.php │ │ └── web.php │ ├── storage/ │ │ ├── app/ │ │ │ └── .gitignore │ │ └── framework/ │ │ ├── .gitignore │ │ ├── cache/ │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ ├── testing/ │ │ │ └── .gitignore │ │ └── views/ │ │ └── .gitignore │ ├── tailwind.config.js │ ├── tests/ │ │ ├── CreatesApplication.php │ │ ├── Feature/ │ │ │ ├── Auth/ │ │ │ │ ├── AuthenticationTest.php │ │ │ │ ├── EmailVerificationTest.php │ │ │ │ ├── PasswordConfirmationTest.php │ │ │ │ ├── PasswordResetTest.php │ │ │ │ └── RegistrationTest.php │ │ │ └── ExampleTest.php │ │ ├── TestCase.php │ │ └── Unit/ │ │ └── ExampleTest.php │ └── vite.config.js ├── chiconnect-mobile-money-payout/ │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── postcss.config.cjs │ ├── src/ │ │ ├── App.jsx │ │ ├── index.css │ │ ├── main.jsx │ │ └── service/ │ │ └── fetchApi.js │ ├── tailwind.config.cjs │ └── vite.config.js ├── chimap/ │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── components/ │ │ ├── card/ │ │ │ └── service.card.js │ │ └── map/ │ │ └── global.map.js │ ├── helpers/ │ │ └── query.js │ ├── hooks/ │ │ └── getInfo.js │ ├── next.config.js │ ├── package.json │ ├── pages/ │ │ ├── _app.js │ │ ├── api/ │ │ │ └── hello.js │ │ └── index.js │ ├── postcss.config.js │ ├── styles/ │ │ └── globals.css │ ├── tailwind.config.js │ └── utils/ │ └── countries.json ├── chimoney-discord-bot/ │ ├── .dockerignore │ ├── .gitignore │ ├── app.js │ ├── bot-client.js │ ├── commands/ │ │ └── sendChimoney.js │ ├── controllers/ │ │ └── webhook.controller.js │ ├── deploy-commands.js │ ├── dockerfile │ ├── index.js │ ├── package.json │ ├── procfile │ ├── readme.md │ ├── routes/ │ │ └── webhooks.js │ └── utils/ │ └── helpers.js ├── chimoney-github-bot/ │ ├── .gitignore │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── app.yml │ ├── index.js │ ├── package.json │ ├── test/ │ │ ├── fixtures/ │ │ │ └── issues.opened.json │ │ └── index.test.js │ └── utils.js ├── chimoney-interledger-wallet-transfer/ │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── PROJECT_SUMMARY.md │ ├── README.md │ ├── SCREENSHOTS.md │ ├── __tests__/ │ │ ├── TransferForm.test.tsx │ │ ├── api/ │ │ │ └── transfer.test.ts │ │ └── utils.test.ts │ ├── app/ │ │ ├── api/ │ │ │ ├── transactions/ │ │ │ │ └── route.ts │ │ │ └── transfer/ │ │ │ └── route.ts │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components/ │ │ ├── Providers.tsx │ │ ├── TransactionHistory.tsx │ │ ├── TransferForm.tsx │ │ └── ui/ │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dialog.tsx │ │ ├── input.tsx │ │ └── label.tsx │ ├── lib/ │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── types/ │ │ └── index.ts │ ├── vitest.config.ts │ └── vitest.setup.ts ├── chimoney-js/ │ ├── .gitignore │ ├── Errors.js │ ├── index.js │ ├── modules/ │ │ ├── Account.js │ │ ├── Info.js │ │ ├── MobileMoney.js │ │ ├── Payouts.js │ │ ├── Redeem.js │ │ ├── SubAccount.js │ │ └── Wallet.js │ ├── package.json │ ├── readme.md │ ├── tests/ │ │ ├── account.test.js │ │ ├── info.test.js │ │ ├── mobileMoney.test.js │ │ ├── payouts.test.js │ │ ├── redeem.test.js │ │ ├── subAccount.test.js │ │ └── wallet.test.js │ └── utils/ │ └── helpers.js ├── chimoney-lib/ │ ├── .editorconfig │ ├── .gitignore │ ├── .vscode/ │ │ ├── extensions.json │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── angular.json │ ├── package.json │ ├── projects/ │ │ └── ngx-chimoney-airtime-payouts/ │ │ ├── README.md │ │ ├── ng-package.json │ │ ├── package.json │ │ ├── src/ │ │ │ ├── lib/ │ │ │ │ ├── components/ │ │ │ │ │ ├── airtime/ │ │ │ │ │ │ ├── airtime.component.css │ │ │ │ │ │ ├── airtime.component.html │ │ │ │ │ │ ├── airtime.component.spec.ts │ │ │ │ │ │ └── airtime.component.ts │ │ │ │ │ ├── bank/ │ │ │ │ │ │ ├── bank.component.css │ │ │ │ │ │ ├── bank.component.html │ │ │ │ │ │ ├── bank.component.spec.ts │ │ │ │ │ │ └── bank.component.ts │ │ │ │ │ └── payouts/ │ │ │ │ │ ├── payouts.component.css │ │ │ │ │ ├── payouts.component.html │ │ │ │ │ ├── payouts.component.spec.ts │ │ │ │ │ └── payouts.component.ts │ │ │ │ ├── ngx-chimoney-airtime-payouts.component.spec.ts │ │ │ │ ├── ngx-chimoney-airtime-payouts.component.ts │ │ │ │ ├── ngx-chimoney-airtime-payouts.service.spec.ts │ │ │ │ └── ngx-chimoney-airtime-payouts.service.ts │ │ │ └── public-api.ts │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.lib.prod.json │ │ └── tsconfig.spec.json │ └── tsconfig.json ├── chimoney-payout-airtime/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── PayChimoney.js │ ├── index.css │ ├── index.js │ ├── reportWebVitals.js │ └── style.js ├── chimoney-react-components/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── postcss.config.js │ ├── src/ │ │ ├── ChimoneyReactComponents.jsx │ │ ├── components/ │ │ │ ├── ChimoneyAccountUpdate.tsx │ │ │ ├── ChimoneyPaymentForm.tsx │ │ │ ├── ChimoneyTransactionList.tsx │ │ │ ├── chimoneyButton.tsx │ │ │ └── chimoneyInput.tsx │ │ ├── index.js │ │ └── styles/ │ │ └── tailwind.css │ ├── tailwind.config.js │ └── vite.config.js ├── chimoney-redeem-airtime/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Home.js │ │ └── Redeem.js │ ├── index.css │ ├── index.js │ └── reportWebVitals.js ├── chimoney-telegram/ │ ├── package.json │ └── src/ │ ├── payments.json │ ├── start.js │ └── users.json ├── chispend-presentation/ │ └── README.md ├── chispend-proposed-copy/ │ └── README.md ├── chispend_app/ │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android/ │ │ ├── .gitignore │ │ ├── app/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ ├── debug/ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── main/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin/ │ │ │ │ │ └── com/ │ │ │ │ │ └── example/ │ │ │ │ │ └── chispend_app/ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res/ │ │ │ │ ├── drawable/ │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-v21/ │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── values/ │ │ │ │ │ └── styles.xml │ │ │ │ └── values-night/ │ │ │ │ └── styles.xml │ │ │ └── profile/ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ └── settings.gradle │ ├── ios/ │ │ ├── .gitignore │ │ ├── Flutter/ │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.imageset/ │ │ │ │ ├── Contents.json │ │ │ │ └── README.md │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ ├── Runner.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── Runner.xcscheme │ │ └── Runner.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ ├── lib/ │ │ ├── data/ │ │ │ ├── common/ │ │ │ │ └── helper_functions.dart │ │ │ ├── constant/ │ │ │ │ └── api_constants.dart │ │ │ ├── models/ │ │ │ │ └── api/ │ │ │ │ └── initiate_chimoney.dart │ │ │ └── services/ │ │ │ ├── api/ │ │ │ │ ├── payout.dart │ │ │ │ └── request_helper/ │ │ │ │ └── index.dart │ │ │ └── navigation/ │ │ │ └── index.dart │ │ ├── di/ │ │ │ └── get_it.dart │ │ ├── main.dart │ │ └── presentation/ │ │ └── ui/ │ │ └── webview/ │ │ └── index.dart │ ├── pubspec.yaml │ ├── test/ │ │ └── widget_test.dart │ ├── web/ │ │ ├── index.html │ │ └── manifest.json │ └── windows/ │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter/ │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ └── runner/ │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── chispend_widget/ │ ├── .flutter-plugins │ ├── .flutter-plugins-dependencies │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib/ │ │ └── chispend_widget.dart │ ├── pubspec.yaml │ └── test/ │ └── chispend_widget_test.dart ├── github-bot/ │ ├── .github/ │ │ └── workflows/ │ │ └── main.yml │ ├── index.js │ ├── package.json │ ├── payments.json │ └── readme.md ├── pay-paddy/ │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── postcss.config.cjs │ ├── src/ │ │ ├── App.jsx │ │ ├── components/ │ │ │ ├── Banner.jsx │ │ │ ├── Feature.jsx │ │ │ ├── Footer.jsx │ │ │ ├── Hero.jsx │ │ │ ├── Layout.jsx │ │ │ ├── MoreInfo.jsx │ │ │ ├── Navbar.jsx │ │ │ └── auth/ │ │ │ ├── LoginModal.jsx │ │ │ └── SignUpModal.jsx │ │ ├── firebase/ │ │ │ └── firebase-config.js │ │ ├── index.css │ │ ├── main.jsx │ │ ├── pages/ │ │ │ └── Home.jsx │ │ ├── service/ │ │ │ └── createAccount.js │ │ └── store/ │ │ ├── modalReducer.js │ │ └── userReducer.js │ ├── tailwind.config.cjs │ ├── vite.config.js │ └── vite.config.js.timestamp-1666936810916.mjs ├── readme-translator/ │ ├── .github/ │ │ └── workflow/ │ │ └── translate.yml │ └── README.md ├── resolution_2025/ │ ├── .gitignore │ ├── README.md │ ├── components.json │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── src/ │ │ ├── app/ │ │ │ ├── auth/ │ │ │ │ └── page.tsx │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ └── resolutions/ │ │ │ └── page.tsx │ │ ├── components/ │ │ │ └── ui/ │ │ │ ├── alert.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ └── progress.tsx │ │ └── lib/ │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── secret-santa/ │ ├── .gitignore │ ├── README.md │ ├── app/ │ │ ├── globals.css │ │ ├── home/ │ │ │ └── page.js │ │ ├── layout.js │ │ └── page.js │ ├── components/ │ │ ├── PaymentPopup.js │ │ ├── chimoneypaymentpopup.js │ │ └── paymentverification.js │ ├── jsconfig.json │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── tailwind.config.js │ └── utility/ │ └── index.js ├── simple_blog/ │ └── README.md ├── telegram-bot-node/ │ ├── package.json │ └── src/ │ ├── payments.json │ ├── start.js │ └── users.json └── whatsapp-bot-node/ ├── index.js ├── package.json ├── payments.json └── readme.md