diff --git a/.github/issue_template.md b/.github/issue_template.md deleted file mode 100644 index 934bf6e8..00000000 --- a/.github/issue_template.md +++ /dev/null @@ -1,39 +0,0 @@ -### πŸ“ Title - - - -### πŸ” Description - - - -### πŸ”„ Steps to Reproduce - - - -1. -2. -3. - -### πŸ‘ŒπŸΌ Expected Behavior - - - -### βœ… Actual Behavior - - - -### πŸ–₯️ Environment - - - -### πŸ“Έ Screenshots/Logs - - - -### πŸ“š Additional Information - - - -### ⏳ ETA - - diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..23830fb4 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "git.ignoreLimitWarning": true +} diff --git a/README.md b/README.md index 48657406..00296833 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +![Banner2](https://github.com/user-attachments/assets/ae9fa07b-039e-4be8-8626-ff1ec83f869a) + # TrustBridge Integration prototype between **TrustBridge** and **Blend.Capital** enabling **cross-chain lending** on the Stellar blockchain using bridged assets and Blend’s permissionless lending infrastructure. diff --git a/.env.example b/frontend/.env.example similarity index 100% rename from .env.example rename to frontend/.env.example diff --git a/.eslintrc.json b/frontend/.eslintrc.json similarity index 100% rename from .eslintrc.json rename to frontend/.eslintrc.json diff --git a/frontend/.github/CODE_OF_CONDUCT.md b/frontend/.github/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..8843e53e --- /dev/null +++ b/frontend/.github/CODE_OF_CONDUCT.md @@ -0,0 +1,79 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our community include: + +- Demonstrating empathy and kindness toward other people +- Being respectful of differing opinions, viewpoints, and experiences +- Giving and gracefully accepting constructive feedback +- Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience +- Focusing on what is best not just for us as individuals, but for the overall community + +Examples of unacceptable behavior include: + +- The use of sexualized language or imagery, and sexual attention or advances of any kind +- Trolling, insulting or derogatory comments, and personal or political attacks +- Public or private harassment +- Publishing others' private information, such as a physical or email address, without their explicit permission +- Other conduct which could reasonably be considered inappropriate in a professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [INSERT EMAIL HERE]. + +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series of actions. + +**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.1, available at https://www.contributor-covenant.org/version/2/1/code_of_conduct.html. + +For answers to common questions about this code of conduct, see https://www.contributor-covenant.org/faq. + +[homepage]: https://www.contributor-covenant.org diff --git a/CONTRIBUTING.md b/frontend/.github/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.md rename to frontend/.github/CONTRIBUTING.md diff --git a/frontend/.github/FUNDING.yml b/frontend/.github/FUNDING.yml new file mode 100644 index 00000000..e69de29b diff --git a/frontend/.github/ISSUE_TEMPLATE/bug_report.yml b/frontend/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..c1d28b40 --- /dev/null +++ b/frontend/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,82 @@ +name: Bug Report πŸ› +description: Report unexpected behavior or application errors +title: "[BUG] " +labels: [bug] +assignees: [] +body: + - type: markdown + attributes: + value: | + ## 🐞 Bug Report + + Please complete the following form to help us reproduce and fix the issue quickly. + + - type: input + id: title + attributes: + label: πŸ“ Title + description: A short and clear title for the issue + placeholder: "e.g., Login fails with WalletConnect" + validations: + required: true + + - type: textarea + id: description + attributes: + label: πŸ” Description + description: Please describe the issue in detail + validations: + required: true + + - type: textarea + id: steps + attributes: + label: πŸ”„ Steps to Reproduce + description: Provide step-by-step instructions to reproduce the issue + placeholder: | + 1. Go to... + 2. Click on... + 3. See the error... + validations: + required: false + + - type: textarea + id: expected + attributes: + label: πŸ‘ŒπŸΌ Expected Behavior + description: What did you expect to happen? + validations: + required: false + + - type: textarea + id: actual + attributes: + label: βœ… Actual Behavior + description: What actually happened instead? + validations: + required: false + + - type: input + id: environment + attributes: + label: πŸ–₯️ Environment + description: OS, browser, app version, or anything relevant + placeholder: "e.g., Windows 11, Chrome 125, TrustBridge v1.0" + + - type: textarea + id: screenshots + attributes: + label: πŸ“Έ Screenshots / Logs + description: Attach screenshots or logs if applicable + + - type: textarea + id: extra + attributes: + label: πŸ“š Additional Information + description: Anything else that might help + + - type: input + id: eta + attributes: + label: ⏳ ETA + description: Estimated time to resolve this (optional) diff --git a/frontend/.github/ISSUE_TEMPLATE/config.yml b/frontend/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..f0506662 --- /dev/null +++ b/frontend/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: πŸ’¬ Questions or General Support + url: https://github.com/JosueBrenes/dApp-TrustBridge/discussions + about: Please use Discussions for general feedback, help, or ideas that are not bugs or features. diff --git a/frontend/.github/ISSUE_TEMPLATE/feature_request.yml b/frontend/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..108729f4 --- /dev/null +++ b/frontend/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,47 @@ +name: Feature Request ✨ +description: Suggest a new feature or improvement +title: "[FEATURE] " +labels: [enhancement] +assignees: [] +body: + - type: markdown + attributes: + value: | + ## ✨ Feature Request + + Please describe your idea to improve the project. + + - type: input + id: title + attributes: + label: πŸ“ Title + placeholder: "e.g., Add support for multi-chain bridge" + + - type: textarea + id: description + attributes: + label: πŸ” Description + description: What is the feature and why is it useful? + + - type: textarea + id: proposal + attributes: + label: πŸ’‘ Proposed Solution + description: How do you imagine this feature being implemented? + + - type: textarea + id: motivation + attributes: + label: 🧠 Motivation / Related Problem + description: What problem does this feature solve? + + - type: textarea + id: screenshots + attributes: + label: πŸ“Έ Visuals / References + description: Include mockups, sketches, examples if applicable + + - type: textarea + id: extra + attributes: + label: πŸ“š Additional Notes diff --git a/.github/pull_request_template.md b/frontend/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from .github/pull_request_template.md rename to frontend/.github/PULL_REQUEST_TEMPLATE.md diff --git a/docs/CONTRIBUTORS_GUIDELINE.md b/frontend/.github/contributing/CONTRIBUTORS_GUIDELINE.md similarity index 100% rename from docs/CONTRIBUTORS_GUIDELINE.md rename to frontend/.github/contributing/CONTRIBUTORS_GUIDELINE.md diff --git a/docs/GIT_GUIDELINE.md b/frontend/.github/contributing/GIT_GUIDELINE.md similarity index 100% rename from docs/GIT_GUIDELINE.md rename to frontend/.github/contributing/GIT_GUIDELINE.md diff --git a/.gitignore b/frontend/.gitignore similarity index 100% rename from .gitignore rename to frontend/.gitignore diff --git a/.husky/pre-commit b/frontend/.husky/pre-commit similarity index 100% rename from .husky/pre-commit rename to frontend/.husky/pre-commit diff --git a/.lintstagedrc b/frontend/.lintstagedrc similarity index 100% rename from .lintstagedrc rename to frontend/.lintstagedrc diff --git a/.prettierrc b/frontend/.prettierrc similarity index 100% rename from .prettierrc rename to frontend/.prettierrc diff --git a/components.json b/frontend/components.json similarity index 100% rename from components.json rename to frontend/components.json diff --git a/eslint.config.mjs b/frontend/eslint.config.mjs similarity index 100% rename from eslint.config.mjs rename to frontend/eslint.config.mjs diff --git a/next.config.ts b/frontend/next.config.ts similarity index 100% rename from next.config.ts rename to frontend/next.config.ts diff --git a/package-lock.json b/frontend/package-lock.json similarity index 100% rename from package-lock.json rename to frontend/package-lock.json diff --git a/package.json b/frontend/package.json similarity index 100% rename from package.json rename to frontend/package.json diff --git a/postcss.config.mjs b/frontend/postcss.config.mjs similarity index 100% rename from postcss.config.mjs rename to frontend/postcss.config.mjs diff --git a/public/img/TrustBridge.png b/frontend/public/img/TrustBridge.png similarity index 100% rename from public/img/TrustBridge.png rename to frontend/public/img/TrustBridge.png diff --git a/src/@types/errors.entity.ts b/frontend/src/@types/errors.entity.ts similarity index 100% rename from src/@types/errors.entity.ts rename to frontend/src/@types/errors.entity.ts diff --git a/src/@types/user.entity.ts b/frontend/src/@types/user.entity.ts similarity index 100% rename from src/@types/user.entity.ts rename to frontend/src/@types/user.entity.ts diff --git a/src/app/dashboard/layout.tsx b/frontend/src/app/dashboard/layout.tsx similarity index 100% rename from src/app/dashboard/layout.tsx rename to frontend/src/app/dashboard/layout.tsx diff --git a/src/app/dashboard/page.tsx b/frontend/src/app/dashboard/page.tsx similarity index 100% rename from src/app/dashboard/page.tsx rename to frontend/src/app/dashboard/page.tsx diff --git a/src/app/dashboard/profile/page.tsx b/frontend/src/app/dashboard/profile/page.tsx similarity index 100% rename from src/app/dashboard/profile/page.tsx rename to frontend/src/app/dashboard/profile/page.tsx diff --git a/src/app/favicon.ico b/frontend/src/app/favicon.ico similarity index 100% rename from src/app/favicon.ico rename to frontend/src/app/favicon.ico diff --git a/src/app/globals.css b/frontend/src/app/globals.css similarity index 100% rename from src/app/globals.css rename to frontend/src/app/globals.css diff --git a/src/app/layout.tsx b/frontend/src/app/layout.tsx similarity index 100% rename from src/app/layout.tsx rename to frontend/src/app/layout.tsx diff --git a/src/app/page.tsx b/frontend/src/app/page.tsx similarity index 100% rename from src/app/page.tsx rename to frontend/src/app/page.tsx diff --git a/src/components/layouts/header/Header.tsx b/frontend/src/components/layouts/header/Header.tsx similarity index 100% rename from src/components/layouts/header/Header.tsx rename to frontend/src/components/layouts/header/Header.tsx diff --git a/src/components/layouts/header/HeaderHome.tsx b/frontend/src/components/layouts/header/HeaderHome.tsx similarity index 100% rename from src/components/layouts/header/HeaderHome.tsx rename to frontend/src/components/layouts/header/HeaderHome.tsx diff --git a/src/components/layouts/sidebar/Sidebar.tsx b/frontend/src/components/layouts/sidebar/Sidebar.tsx similarity index 100% rename from src/components/layouts/sidebar/Sidebar.tsx rename to frontend/src/components/layouts/sidebar/Sidebar.tsx diff --git a/src/components/layouts/sidebar/hooks/useSidebar.hook.tsx b/frontend/src/components/layouts/sidebar/hooks/useSidebar.hook.tsx similarity index 100% rename from src/components/layouts/sidebar/hooks/useSidebar.hook.tsx rename to frontend/src/components/layouts/sidebar/hooks/useSidebar.hook.tsx diff --git a/src/components/modules/auth/helpers/stellar-wallet-kit.helper.ts b/frontend/src/components/modules/auth/helpers/stellar-wallet-kit.helper.ts similarity index 100% rename from src/components/modules/auth/helpers/stellar-wallet-kit.helper.ts rename to frontend/src/components/modules/auth/helpers/stellar-wallet-kit.helper.ts diff --git a/src/components/modules/auth/hooks/wallet.hook.ts b/frontend/src/components/modules/auth/hooks/wallet.hook.ts similarity index 100% rename from src/components/modules/auth/hooks/wallet.hook.ts rename to frontend/src/components/modules/auth/hooks/wallet.hook.ts diff --git a/src/components/modules/auth/ui/pages/Home.tsx b/frontend/src/components/modules/auth/ui/pages/Home.tsx similarity index 100% rename from src/components/modules/auth/ui/pages/Home.tsx rename to frontend/src/components/modules/auth/ui/pages/Home.tsx diff --git a/src/components/modules/dashboard/hooks/useDashboard.hook.ts b/frontend/src/components/modules/dashboard/hooks/useDashboard.hook.ts similarity index 100% rename from src/components/modules/dashboard/hooks/useDashboard.hook.ts rename to frontend/src/components/modules/dashboard/hooks/useDashboard.hook.ts diff --git a/src/components/modules/dashboard/ui/pages/DashboardPage.tsx b/frontend/src/components/modules/dashboard/ui/pages/DashboardPage.tsx similarity index 100% rename from src/components/modules/dashboard/ui/pages/DashboardPage.tsx rename to frontend/src/components/modules/dashboard/ui/pages/DashboardPage.tsx diff --git a/src/components/modules/profile/schemas/profile.schema.ts b/frontend/src/components/modules/profile/schemas/profile.schema.ts similarity index 100% rename from src/components/modules/profile/schemas/profile.schema.ts rename to frontend/src/components/modules/profile/schemas/profile.schema.ts diff --git a/src/components/modules/profile/ui/UserProfileForm.tsx b/frontend/src/components/modules/profile/ui/UserProfileForm.tsx similarity index 100% rename from src/components/modules/profile/ui/UserProfileForm.tsx rename to frontend/src/components/modules/profile/ui/UserProfileForm.tsx diff --git a/src/components/ui/accordion.tsx b/frontend/src/components/ui/accordion.tsx similarity index 100% rename from src/components/ui/accordion.tsx rename to frontend/src/components/ui/accordion.tsx diff --git a/src/components/ui/alert.tsx b/frontend/src/components/ui/alert.tsx similarity index 100% rename from src/components/ui/alert.tsx rename to frontend/src/components/ui/alert.tsx diff --git a/src/components/ui/avatar.tsx b/frontend/src/components/ui/avatar.tsx similarity index 100% rename from src/components/ui/avatar.tsx rename to frontend/src/components/ui/avatar.tsx diff --git a/src/components/ui/badge.tsx b/frontend/src/components/ui/badge.tsx similarity index 100% rename from src/components/ui/badge.tsx rename to frontend/src/components/ui/badge.tsx diff --git a/src/components/ui/button.tsx b/frontend/src/components/ui/button.tsx similarity index 100% rename from src/components/ui/button.tsx rename to frontend/src/components/ui/button.tsx diff --git a/src/components/ui/card.tsx b/frontend/src/components/ui/card.tsx similarity index 100% rename from src/components/ui/card.tsx rename to frontend/src/components/ui/card.tsx diff --git a/src/components/ui/checkbox.tsx b/frontend/src/components/ui/checkbox.tsx similarity index 100% rename from src/components/ui/checkbox.tsx rename to frontend/src/components/ui/checkbox.tsx diff --git a/src/components/ui/collapsible.tsx b/frontend/src/components/ui/collapsible.tsx similarity index 100% rename from src/components/ui/collapsible.tsx rename to frontend/src/components/ui/collapsible.tsx diff --git a/src/components/ui/command.tsx b/frontend/src/components/ui/command.tsx similarity index 100% rename from src/components/ui/command.tsx rename to frontend/src/components/ui/command.tsx diff --git a/src/components/ui/dialog.tsx b/frontend/src/components/ui/dialog.tsx similarity index 100% rename from src/components/ui/dialog.tsx rename to frontend/src/components/ui/dialog.tsx diff --git a/src/components/ui/dropdown-menu.tsx b/frontend/src/components/ui/dropdown-menu.tsx similarity index 100% rename from src/components/ui/dropdown-menu.tsx rename to frontend/src/components/ui/dropdown-menu.tsx diff --git a/src/components/ui/form.tsx b/frontend/src/components/ui/form.tsx similarity index 100% rename from src/components/ui/form.tsx rename to frontend/src/components/ui/form.tsx diff --git a/src/components/ui/input.tsx b/frontend/src/components/ui/input.tsx similarity index 100% rename from src/components/ui/input.tsx rename to frontend/src/components/ui/input.tsx diff --git a/src/components/ui/label.tsx b/frontend/src/components/ui/label.tsx similarity index 100% rename from src/components/ui/label.tsx rename to frontend/src/components/ui/label.tsx diff --git a/src/components/ui/popover.tsx b/frontend/src/components/ui/popover.tsx similarity index 100% rename from src/components/ui/popover.tsx rename to frontend/src/components/ui/popover.tsx diff --git a/src/components/ui/scroll-area.tsx b/frontend/src/components/ui/scroll-area.tsx similarity index 100% rename from src/components/ui/scroll-area.tsx rename to frontend/src/components/ui/scroll-area.tsx diff --git a/src/components/ui/select.tsx b/frontend/src/components/ui/select.tsx similarity index 100% rename from src/components/ui/select.tsx rename to frontend/src/components/ui/select.tsx diff --git a/src/components/ui/separator.tsx b/frontend/src/components/ui/separator.tsx similarity index 100% rename from src/components/ui/separator.tsx rename to frontend/src/components/ui/separator.tsx diff --git a/src/components/ui/sheet.tsx b/frontend/src/components/ui/sheet.tsx similarity index 100% rename from src/components/ui/sheet.tsx rename to frontend/src/components/ui/sheet.tsx diff --git a/src/components/ui/sidebar.tsx b/frontend/src/components/ui/sidebar.tsx similarity index 100% rename from src/components/ui/sidebar.tsx rename to frontend/src/components/ui/sidebar.tsx diff --git a/src/components/ui/skeleton.tsx b/frontend/src/components/ui/skeleton.tsx similarity index 100% rename from src/components/ui/skeleton.tsx rename to frontend/src/components/ui/skeleton.tsx diff --git a/src/components/ui/switch.tsx b/frontend/src/components/ui/switch.tsx similarity index 100% rename from src/components/ui/switch.tsx rename to frontend/src/components/ui/switch.tsx diff --git a/src/components/ui/tab.tsx b/frontend/src/components/ui/tab.tsx similarity index 100% rename from src/components/ui/tab.tsx rename to frontend/src/components/ui/tab.tsx diff --git a/src/components/ui/table.tsx b/frontend/src/components/ui/table.tsx similarity index 100% rename from src/components/ui/table.tsx rename to frontend/src/components/ui/table.tsx diff --git a/src/components/ui/tabs.tsx b/frontend/src/components/ui/tabs.tsx similarity index 100% rename from src/components/ui/tabs.tsx rename to frontend/src/components/ui/tabs.tsx diff --git a/src/components/ui/textarea.tsx b/frontend/src/components/ui/textarea.tsx similarity index 100% rename from src/components/ui/textarea.tsx rename to frontend/src/components/ui/textarea.tsx diff --git a/src/components/ui/toast.tsx b/frontend/src/components/ui/toast.tsx similarity index 100% rename from src/components/ui/toast.tsx rename to frontend/src/components/ui/toast.tsx diff --git a/src/components/ui/tooltip.tsx b/frontend/src/components/ui/tooltip.tsx similarity index 100% rename from src/components/ui/tooltip.tsx rename to frontend/src/components/ui/tooltip.tsx diff --git a/src/components/utils/wallet/getStellarAddress.ts b/frontend/src/components/utils/wallet/getStellarAddress.ts similarity index 100% rename from src/components/utils/wallet/getStellarAddress.ts rename to frontend/src/components/utils/wallet/getStellarAddress.ts diff --git a/src/config/wallet-kit.ts b/frontend/src/config/wallet-kit.ts similarity index 100% rename from src/config/wallet-kit.ts rename to frontend/src/config/wallet-kit.ts diff --git a/src/errors/enums/error.enum.ts b/frontend/src/errors/enums/error.enum.ts similarity index 100% rename from src/errors/enums/error.enum.ts rename to frontend/src/errors/enums/error.enum.ts diff --git a/src/errors/utils/handle-errors.ts b/frontend/src/errors/utils/handle-errors.ts similarity index 100% rename from src/errors/utils/handle-errors.ts rename to frontend/src/errors/utils/handle-errors.ts diff --git a/src/helpers/is-valid-wallet.helper.ts b/frontend/src/helpers/is-valid-wallet.helper.ts similarity index 100% rename from src/helpers/is-valid-wallet.helper.ts rename to frontend/src/helpers/is-valid-wallet.helper.ts diff --git a/src/hooks/use-mobile.ts b/frontend/src/hooks/use-mobile.ts similarity index 100% rename from src/hooks/use-mobile.ts rename to frontend/src/hooks/use-mobile.ts diff --git a/src/lib/firebase.ts b/frontend/src/lib/firebase.ts similarity index 100% rename from src/lib/firebase.ts rename to frontend/src/lib/firebase.ts diff --git a/src/lib/utils.ts b/frontend/src/lib/utils.ts similarity index 100% rename from src/lib/utils.ts rename to frontend/src/lib/utils.ts diff --git a/src/providers/global.provider.tsx b/frontend/src/providers/global.provider.tsx similarity index 100% rename from src/providers/global.provider.tsx rename to frontend/src/providers/global.provider.tsx diff --git a/src/providers/tabs.provider.tsx b/frontend/src/providers/tabs.provider.tsx similarity index 100% rename from src/providers/tabs.provider.tsx rename to frontend/src/providers/tabs.provider.tsx diff --git a/src/providers/user.provider.tsx b/frontend/src/providers/user.provider.tsx similarity index 100% rename from src/providers/user.provider.tsx rename to frontend/src/providers/user.provider.tsx diff --git a/src/providers/wallet.provider.tsx b/frontend/src/providers/wallet.provider.tsx similarity index 100% rename from src/providers/wallet.provider.tsx rename to frontend/src/providers/wallet.provider.tsx diff --git a/tsconfig.json b/frontend/tsconfig.json similarity index 100% rename from tsconfig.json rename to frontend/tsconfig.json