From 3e832c28e141feca872c3dba29300141f58152f2 Mon Sep 17 00:00:00 2001
From: Tianyi LIANG <tianyi@igem.org>
Date: Thu, 16 May 2024 04:47:32 +0800
Subject: [PATCH] 2024 pre-release

---
 .env                                     |    4 +
 .eslintrc.cjs                            |   18 +
 .gitignore                               |   24 +
 .gitlab-ci.yml                           |   19 +
 LICENSE                                  |  396 +++++
 README.md                                |  166 +-
 index.html                               |   13 +
 package.json                             |   34 +
 src/assets/igem-2022.svg                 |    8 +
 src/components/AttributionForm/index.tsx |   28 +
 src/components/Footer/index.tsx          |   82 +
 src/components/Header/index.tsx          |   26 +
 src/components/Navbar/index.tsx          |   47 +
 src/components/NotFound/index.tsx        |   20 +
 src/components/index.tsx                 |    4 +
 src/containers/App/App.css               |   65 +
 src/containers/App/App.tsx               |  111 ++
 src/contents/attributions.tsx            |   39 +
 src/contents/contribution.tsx            |   36 +
 src/contents/description.tsx             |  103 ++
 src/contents/education.tsx               |   78 +
 src/contents/engineering.tsx             |   36 +
 src/contents/entrepreneurship.tsx        |  106 ++
 src/contents/experiments.tsx             |   60 +
 src/contents/hardware.tsx                |   99 ++
 src/contents/home.tsx                    |  135 ++
 src/contents/human-practices.tsx         |  140 ++
 src/contents/inclusivity.tsx             |   85 +
 src/contents/index.tsx                   |   25 +
 src/contents/measurement.tsx             |   89 +
 src/contents/model.tsx                   |   92 ++
 src/contents/notebook.tsx                |   59 +
 src/contents/plant.tsx                   |   74 +
 src/contents/results.tsx                 |  107 ++
 src/contents/safety.tsx                  |   94 ++
 src/contents/software.tsx                |   83 +
 src/contents/sustainable.tsx             |   74 +
 src/contents/team.tsx                    |   71 +
 src/main.tsx                             |   12 +
 src/pages.ts                             |  155 ++
 src/utils/getPathMapping.ts              |   27 +
 src/utils/index.ts                       |    3 +
 src/utils/stringToSlug.ts                |    9 +
 src/utils/useDocumentTitle.ts            |    9 +
 src/vite-env.d.ts                        |   10 +
 tsconfig.json                            |   25 +
 tsconfig.node.json                       |   11 +
 vite.config.ts                           |   21 +
 yarn.lock                                | 1900 ++++++++++++++++++++++
 49 files changed, 4840 insertions(+), 92 deletions(-)
 create mode 100644 .env
 create mode 100644 .eslintrc.cjs
 create mode 100644 .gitignore
 create mode 100644 .gitlab-ci.yml
 create mode 100644 LICENSE
 create mode 100644 index.html
 create mode 100644 package.json
 create mode 100644 src/assets/igem-2022.svg
 create mode 100644 src/components/AttributionForm/index.tsx
 create mode 100644 src/components/Footer/index.tsx
 create mode 100644 src/components/Header/index.tsx
 create mode 100644 src/components/Navbar/index.tsx
 create mode 100644 src/components/NotFound/index.tsx
 create mode 100644 src/components/index.tsx
 create mode 100644 src/containers/App/App.css
 create mode 100644 src/containers/App/App.tsx
 create mode 100644 src/contents/attributions.tsx
 create mode 100644 src/contents/contribution.tsx
 create mode 100644 src/contents/description.tsx
 create mode 100644 src/contents/education.tsx
 create mode 100644 src/contents/engineering.tsx
 create mode 100644 src/contents/entrepreneurship.tsx
 create mode 100644 src/contents/experiments.tsx
 create mode 100644 src/contents/hardware.tsx
 create mode 100644 src/contents/home.tsx
 create mode 100644 src/contents/human-practices.tsx
 create mode 100644 src/contents/inclusivity.tsx
 create mode 100644 src/contents/index.tsx
 create mode 100644 src/contents/measurement.tsx
 create mode 100644 src/contents/model.tsx
 create mode 100644 src/contents/notebook.tsx
 create mode 100644 src/contents/plant.tsx
 create mode 100644 src/contents/results.tsx
 create mode 100644 src/contents/safety.tsx
 create mode 100644 src/contents/software.tsx
 create mode 100644 src/contents/sustainable.tsx
 create mode 100644 src/contents/team.tsx
 create mode 100644 src/main.tsx
 create mode 100644 src/pages.ts
 create mode 100644 src/utils/getPathMapping.ts
 create mode 100644 src/utils/index.ts
 create mode 100644 src/utils/stringToSlug.ts
 create mode 100644 src/utils/useDocumentTitle.ts
 create mode 100644 src/vite-env.d.ts
 create mode 100644 tsconfig.json
 create mode 100644 tsconfig.node.json
 create mode 100644 vite.config.ts
 create mode 100644 yarn.lock

diff --git a/.env b/.env
new file mode 100644
index 0000000..9563167
--- /dev/null
+++ b/.env
@@ -0,0 +1,4 @@
+# Team name
+VITE_TEAM_NAME=TeamName
+# Team year
+VITE_TEAM_YEAR=2024
diff --git a/.eslintrc.cjs b/.eslintrc.cjs
new file mode 100644
index 0000000..d6c9537
--- /dev/null
+++ b/.eslintrc.cjs
@@ -0,0 +1,18 @@
+module.exports = {
+  root: true,
+  env: { browser: true, es2020: true },
+  extends: [
+    'eslint:recommended',
+    'plugin:@typescript-eslint/recommended',
+    'plugin:react-hooks/recommended',
+  ],
+  ignorePatterns: ['dist', '.eslintrc.cjs'],
+  parser: '@typescript-eslint/parser',
+  plugins: ['react-refresh'],
+  rules: {
+    'react-refresh/only-export-components': [
+      'warn',
+      { allowConstantExport: true },
+    ],
+  },
+}
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a547bf3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,24 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..488ac55
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,19 @@
+image: node:18.20.0
+pages:
+  stage: deploy
+  cache:
+    key:
+      files:
+        - yarn.lock
+      prefix: yarn
+    paths:
+      - node_modules/
+      - .yarn/cache/
+  script:
+    - yarn
+    - yarn build
+    - cp -a dist/. public/
+    - echo '/* /index.html 200' > public/_redirects
+  artifacts:
+    paths:
+      - public
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..4e7c495
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,396 @@
+Attribution 4.0 International (CC BY 4.0) 
+https://creativecommons.org/licenses/by/4.0/
+
+=======================================================================
+
+Creative Commons Corporation ("Creative Commons") is not a law firm and
+does not provide legal services or legal advice. Distribution of
+Creative Commons public licenses does not create a lawyer-client or
+other relationship. Creative Commons makes its licenses and related
+information available on an "as-is" basis. Creative Commons gives no
+warranties regarding its licenses, any material licensed under their
+terms and conditions, or any related information. Creative Commons
+disclaims all liability for damages resulting from their use to the
+fullest extent possible.
+
+Using Creative Commons Public Licenses
+
+Creative Commons public licenses provide a standard set of terms and
+conditions that creators and other rights holders may use to share
+original works of authorship and other material subject to copyright
+and certain other rights specified in the public license below. The
+following considerations are for informational purposes only, are not
+exhaustive, and do not form part of our licenses.
+
+     Considerations for licensors: Our public licenses are
+     intended for use by those authorized to give the public
+     permission to use material in ways otherwise restricted by
+     copyright and certain other rights. Our licenses are
+     irrevocable. Licensors should read and understand the terms
+     and conditions of the license they choose before applying it.
+     Licensors should also secure all rights necessary before
+     applying our licenses so that the public can reuse the
+     material as expected. Licensors should clearly mark any
+     material not subject to the license. This includes other CC-
+     licensed material, or material used under an exception or
+     limitation to copyright. More considerations for licensors:
+     wiki.creativecommons.org/Considerations_for_licensors
+
+     Considerations for the public: By using one of our public
+     licenses, a licensor grants the public permission to use the
+     licensed material under specified terms and conditions. If
+     the licensor's permission is not necessary for any reason--for
+     example, because of any applicable exception or limitation to
+     copyright--then that use is not regulated by the license. Our
+     licenses grant only permissions under copyright and certain
+     other rights that a licensor has authority to grant. Use of
+     the licensed material may still be restricted for other
+     reasons, including because others have copyright or other
+     rights in the material. A licensor may make special requests,
+     such as asking that all changes be marked or described.
+     Although not required by our licenses, you are encouraged to
+     respect those requests where reasonable. More considerations
+     for the public:
+     wiki.creativecommons.org/Considerations_for_licensees
+
+=======================================================================
+
+Creative Commons Attribution 4.0 International Public License
+
+By exercising the Licensed Rights (defined below), You accept and agree
+to be bound by the terms and conditions of this Creative Commons
+Attribution 4.0 International Public License ("Public License"). To the
+extent this Public License may be interpreted as a contract, You are
+granted the Licensed Rights in consideration of Your acceptance of
+these terms and conditions, and the Licensor grants You such rights in
+consideration of benefits the Licensor receives from making the
+Licensed Material available under these terms and conditions.
+
+
+Section 1 -- Definitions.
+
+  a. Adapted Material means material subject to Copyright and Similar
+     Rights that is derived from or based upon the Licensed Material
+     and in which the Licensed Material is translated, altered,
+     arranged, transformed, or otherwise modified in a manner requiring
+     permission under the Copyright and Similar Rights held by the
+     Licensor. For purposes of this Public License, where the Licensed
+     Material is a musical work, performance, or sound recording,
+     Adapted Material is always produced where the Licensed Material is
+     synched in timed relation with a moving image.
+
+  b. Adapter's License means the license You apply to Your Copyright
+     and Similar Rights in Your contributions to Adapted Material in
+     accordance with the terms and conditions of this Public License.
+
+  c. Copyright and Similar Rights means copyright and/or similar rights
+     closely related to copyright including, without limitation,
+     performance, broadcast, sound recording, and Sui Generis Database
+     Rights, without regard to how the rights are labeled or
+     categorized. For purposes of this Public License, the rights
+     specified in Section 2(b)(1)-(2) are not Copyright and Similar
+     Rights.
+
+  d. Effective Technological Measures means those measures that, in the
+     absence of proper authority, may not be circumvented under laws
+     fulfilling obligations under Article 11 of the WIPO Copyright
+     Treaty adopted on December 20, 1996, and/or similar international
+     agreements.
+
+  e. Exceptions and Limitations means fair use, fair dealing, and/or
+     any other exception or limitation to Copyright and Similar Rights
+     that applies to Your use of the Licensed Material.
+
+  f. Licensed Material means the artistic or literary work, database,
+     or other material to which the Licensor applied this Public
+     License.
+
+  g. Licensed Rights means the rights granted to You subject to the
+     terms and conditions of this Public License, which are limited to
+     all Copyright and Similar Rights that apply to Your use of the
+     Licensed Material and that the Licensor has authority to license.
+
+  h. Licensor means the individual(s) or entity(ies) granting rights
+     under this Public License.
+
+  i. Share means to provide material to the public by any means or
+     process that requires permission under the Licensed Rights, such
+     as reproduction, public display, public performance, distribution,
+     dissemination, communication, or importation, and to make material
+     available to the public including in ways that members of the
+     public may access the material from a place and at a time
+     individually chosen by them.
+
+  j. Sui Generis Database Rights means rights other than copyright
+     resulting from Directive 96/9/EC of the European Parliament and of
+     the Council of 11 March 1996 on the legal protection of databases,
+     as amended and/or succeeded, as well as other essentially
+     equivalent rights anywhere in the world.
+
+  k. You means the individual or entity exercising the Licensed Rights
+     under this Public License. Your has a corresponding meaning.
+
+
+Section 2 -- Scope.
+
+  a. License grant.
+
+       1. Subject to the terms and conditions of this Public License,
+          the Licensor hereby grants You a worldwide, royalty-free,
+          non-sublicensable, non-exclusive, irrevocable license to
+          exercise the Licensed Rights in the Licensed Material to:
+
+            a. reproduce and Share the Licensed Material, in whole or
+               in part; and
+
+            b. produce, reproduce, and Share Adapted Material.
+
+       2. Exceptions and Limitations. For the avoidance of doubt, where
+          Exceptions and Limitations apply to Your use, this Public
+          License does not apply, and You do not need to comply with
+          its terms and conditions.
+
+       3. Term. The term of this Public License is specified in Section
+          6(a).
+
+       4. Media and formats; technical modifications allowed. The
+          Licensor authorizes You to exercise the Licensed Rights in
+          all media and formats whether now known or hereafter created,
+          and to make technical modifications necessary to do so. The
+          Licensor waives and/or agrees not to assert any right or
+          authority to forbid You from making technical modifications
+          necessary to exercise the Licensed Rights, including
+          technical modifications necessary to circumvent Effective
+          Technological Measures. For purposes of this Public License,
+          simply making modifications authorized by this Section 2(a)
+          (4) never produces Adapted Material.
+
+       5. Downstream recipients.
+
+            a. Offer from the Licensor -- Licensed Material. Every
+               recipient of the Licensed Material automatically
+               receives an offer from the Licensor to exercise the
+               Licensed Rights under the terms and conditions of this
+               Public License.
+
+            b. No downstream restrictions. You may not offer or impose
+               any additional or different terms or conditions on, or
+               apply any Effective Technological Measures to, the
+               Licensed Material if doing so restricts exercise of the
+               Licensed Rights by any recipient of the Licensed
+               Material.
+
+       6. No endorsement. Nothing in this Public License constitutes or
+          may be construed as permission to assert or imply that You
+          are, or that Your use of the Licensed Material is, connected
+          with, or sponsored, endorsed, or granted official status by,
+          the Licensor or others designated to receive attribution as
+          provided in Section 3(a)(1)(A)(i).
+
+  b. Other rights.
+
+       1. Moral rights, such as the right of integrity, are not
+          licensed under this Public License, nor are publicity,
+          privacy, and/or other similar personality rights; however, to
+          the extent possible, the Licensor waives and/or agrees not to
+          assert any such rights held by the Licensor to the limited
+          extent necessary to allow You to exercise the Licensed
+          Rights, but not otherwise.
+
+       2. Patent and trademark rights are not licensed under this
+          Public License.
+
+       3. To the extent possible, the Licensor waives any right to
+          collect royalties from You for the exercise of the Licensed
+          Rights, whether directly or through a collecting society
+          under any voluntary or waivable statutory or compulsory
+          licensing scheme. In all other cases the Licensor expressly
+          reserves any right to collect such royalties.
+
+
+Section 3 -- License Conditions.
+
+Your exercise of the Licensed Rights is expressly made subject to the
+following conditions.
+
+  a. Attribution.
+
+       1. If You Share the Licensed Material (including in modified
+          form), You must:
+
+            a. retain the following if it is supplied by the Licensor
+               with the Licensed Material:
+
+                 i. identification of the creator(s) of the Licensed
+                    Material and any others designated to receive
+                    attribution, in any reasonable manner requested by
+                    the Licensor (including by pseudonym if
+                    designated);
+
+                ii. a copyright notice;
+
+               iii. a notice that refers to this Public License;
+
+                iv. a notice that refers to the disclaimer of
+                    warranties;
+
+                 v. a URI or hyperlink to the Licensed Material to the
+                    extent reasonably practicable;
+
+            b. indicate if You modified the Licensed Material and
+               retain an indication of any previous modifications; and
+
+            c. indicate the Licensed Material is licensed under this
+               Public License, and include the text of, or the URI or
+               hyperlink to, this Public License.
+
+       2. You may satisfy the conditions in Section 3(a)(1) in any
+          reasonable manner based on the medium, means, and context in
+          which You Share the Licensed Material. For example, it may be
+          reasonable to satisfy the conditions by providing a URI or
+          hyperlink to a resource that includes the required
+          information.
+
+       3. If requested by the Licensor, You must remove any of the
+          information required by Section 3(a)(1)(A) to the extent
+          reasonably practicable.
+
+       4. If You Share Adapted Material You produce, the Adapter's
+          License You apply must not prevent recipients of the Adapted
+          Material from complying with this Public License.
+
+
+Section 4 -- Sui Generis Database Rights.
+
+Where the Licensed Rights include Sui Generis Database Rights that
+apply to Your use of the Licensed Material:
+
+  a. for the avoidance of doubt, Section 2(a)(1) grants You the right
+     to extract, reuse, reproduce, and Share all or a substantial
+     portion of the contents of the database;
+
+  b. if You include all or a substantial portion of the database
+     contents in a database in which You have Sui Generis Database
+     Rights, then the database in which You have Sui Generis Database
+     Rights (but not its individual contents) is Adapted Material; and
+
+  c. You must comply with the conditions in Section 3(a) if You Share
+     all or a substantial portion of the contents of the database.
+
+For the avoidance of doubt, this Section 4 supplements and does not
+replace Your obligations under this Public License where the Licensed
+Rights include other Copyright and Similar Rights.
+
+
+Section 5 -- Disclaimer of Warranties and Limitation of Liability.
+
+  a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
+     EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
+     AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
+     ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
+     IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
+     WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
+     PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
+     ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
+     KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
+     ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
+
+  b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
+     TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
+     NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
+     INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
+     COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
+     USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
+     ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
+     DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
+     IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
+
+  c. The disclaimer of warranties and limitation of liability provided
+     above shall be interpreted in a manner that, to the extent
+     possible, most closely approximates an absolute disclaimer and
+     waiver of all liability.
+
+
+Section 6 -- Term and Termination.
+
+  a. This Public License applies for the term of the Copyright and
+     Similar Rights licensed here. However, if You fail to comply with
+     this Public License, then Your rights under this Public License
+     terminate automatically.
+
+  b. Where Your right to use the Licensed Material has terminated under
+     Section 6(a), it reinstates:
+
+       1. automatically as of the date the violation is cured, provided
+          it is cured within 30 days of Your discovery of the
+          violation; or
+
+       2. upon express reinstatement by the Licensor.
+
+     For the avoidance of doubt, this Section 6(b) does not affect any
+     right the Licensor may have to seek remedies for Your violations
+     of this Public License.
+
+  c. For the avoidance of doubt, the Licensor may also offer the
+     Licensed Material under separate terms or conditions or stop
+     distributing the Licensed Material at any time; however, doing so
+     will not terminate this Public License.
+
+  d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
+     License.
+
+
+Section 7 -- Other Terms and Conditions.
+
+  a. The Licensor shall not be bound by any additional or different
+     terms or conditions communicated by You unless expressly agreed.
+
+  b. Any arrangements, understandings, or agreements regarding the
+     Licensed Material not stated herein are separate from and
+     independent of the terms and conditions of this Public License.
+
+
+Section 8 -- Interpretation.
+
+  a. For the avoidance of doubt, this Public License does not, and
+     shall not be interpreted to, reduce, limit, restrict, or impose
+     conditions on any use of the Licensed Material that could lawfully
+     be made without permission under this Public License.
+
+  b. To the extent possible, if any provision of this Public License is
+     deemed unenforceable, it shall be automatically reformed to the
+     minimum extent necessary to make it enforceable. If the provision
+     cannot be reformed, it shall be severed from this Public License
+     without affecting the enforceability of the remaining terms and
+     conditions.
+
+  c. No term or condition of this Public License will be waived and no
+     failure to comply consented to unless expressly agreed to by the
+     Licensor.
+
+  d. Nothing in this Public License constitutes or may be interpreted
+     as a limitation upon, or waiver of, any privileges and immunities
+     that apply to the Licensor or You, including from the legal
+     processes of any jurisdiction or authority.
+
+
+=======================================================================
+
+Creative Commons is not a party to its public licenses.
+Notwithstanding, Creative Commons may elect to apply one of its public
+licenses to material it publishes and in those instances will be
+considered the “Licensor.” The text of the Creative Commons public
+licenses is dedicated to the public domain under the CC0 Public Domain
+Dedication. Except for the limited purpose of indicating that material
+is shared under a Creative Commons public license or as otherwise
+permitted by the Creative Commons policies published at
+creativecommons.org/policies, Creative Commons does not authorize the
+use of the trademark "Creative Commons" or any other trademark or logo
+of Creative Commons without its prior written consent including,
+without limitation, in connection with any unauthorized modifications
+to any of its public licenses or any other arrangements,
+understandings, or agreements concerning use of licensed material. For
+the avoidance of doubt, this paragraph does not form part of the public
+licenses.
+
+Creative Commons may be contacted at creativecommons.org.
diff --git a/README.md b/README.md
index 65650fe..18d2a22 100644
--- a/README.md
+++ b/README.md
@@ -1,93 +1,75 @@
-# Wiki React Vite
+# Team TeamName 2024 Wiki
+
+This repository uses `TypeScript` and `React` to manage the wikis.
+
+This repository **MUST** contain all coding assets to generate your team's wiki
+(HTML, CSS, JavaScript, TypeScript, Python, etc).
+
+Images, photos, icons and fonts **MUST** be stored on `static.igem.wiki` using
+[uploads.igem.org](https://uploads.igem.org), and Videos **must** be embedded
+from [iGEM Video Universe](https://video.igem.org).
+
+For up-to-date requirements, resources, help and guidance, visit
+[competition.igem.org/deliverables/team-wiki](https://competition.igem.org/deliverables/team-wiki).
+
+## Getting Started
+
+Before refactoring the code of this template to suit your wiki needs, please make sure you have the ability to use React
+for web development.
+
+1. Clone the repository:
+   ```bash
+   git clone https://gitlab.igem.org/lty2002/wiki-react-vite
+   cd wiki-react-vite
+   ```
+2. Install the dependencies:
+   ```bash
+   yarn install
+   ```
+3. Start the development server:
+   ```bash
+   yarn run dev
+   ```
+4. Navigate to the files you wish to edit:
+    - The main App component can be found under `src/containers/App`
+    - Pre-built components are located under `src/components`
+    - Individual pages can be modified in the `src/pages.ts`
+    - Content pages can be updated in the `src/contents`
+5. Once you are done, save the changes by **committing** them to the _main branch_ of the repository
+6. An automated script will build, test and deploy your wiki to the iGEM server
+
+## About This Template
+
+### Files
+
+Below is the structure of important files and directories in this project:
+
+    ├── README.md            -> The file you are currently reading
+    ├── index.html           -> Single HTML file for the wiki
+    ├── package.json         -> Manages project metadata and dependencies
+    ├── src/
+    │   ├── assets/          -> Small static files like icons
+    │   ├── components/      -> Pre-built components(like Navbar, Footer, etc.)
+    │   ├── containers/
+    │   │   └── App/         -> Main React application container
+    │   ├── contents/
+    │   │   ├── *.tsx        -> Page components for the wiki
+    │   ├── main.tsx         -> Entry point of the wiki application
+    │   ├── pages.ts         -> Page definition and path mapping
+    │   ├── utils/           -> Utility functions
+    │   └── vite-env.d.ts    -> TypeScript definitions for Vite
+    ├── tsconfig.json        -> Configures TypeScript options
+    ├── tsconfig.node.json   -> TypeScript settings for Node.js
+    ├── vite.config.ts       -> Configuration for the Vite tool
+    └── yarn.lock            -> Yarn lock file for dependency management
+
+### Technologies
+
+- [React](https://reactjs.org): A JavaScript library for building user interfaces
+- [TypeScript](https://www.typescriptlang.org): Extends JavaScript by adding types
+- [Vite](https://vitejs.dev): Frontend tooling that provides faster and leaner development builds
+- [Bootstrap](https://getbootstrap.com): Framework for building responsive, mobile-first sites
+- [React Bootstrap](https://react-bootstrap.github.io): Bootstrap components built with React
+- [React Router](https://reactrouter.com): Declarative routing for React applications
+- (Optional) [Prettier](https://prettier.io): Code formatter
 
-
-
-## Getting started
-
-To make it easy for you to get started with GitLab, here's a list of recommended next steps.
-
-Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
-
-## Add your files
-
-- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
-- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
-
-```
-cd existing_repo
-git remote add origin https://gitlab.igem.org/templates/wiki-react-vite.git
-git branch -M main
-git push -uf origin main
-```
-
-## Integrate with your tools
-
-- [ ] [Set up project integrations](https://gitlab.igem.org/templates/wiki-react-vite/-/settings/integrations)
-
-## Collaborate with your team
-
-- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
-- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
-- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
-- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
-- [ ] [Set auto-merge](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
-
-## Test and Deploy
-
-Use the built-in continuous integration in GitLab.
-
-- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
-- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
-- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
-- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
-- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
-
-***
-
-# Editing this README
-
-When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template.
-
-## Suggestions for a good README
-
-Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
-
-## Name
-Choose a self-explaining name for your project.
-
-## Description
-Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
-
-## Badges
-On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
-
-## Visuals
-Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
-
-## Installation
-Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
-
-## Usage
-Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
-
-## Support
-Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
-
-## Roadmap
-If you have ideas for releases in the future, it is a good idea to list them in the README.
-
-## Contributing
-State if you are open to contributions and what your requirements are for accepting them.
-
-For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
-
-You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
-
-## Authors and acknowledgment
-Show your appreciation to those who have contributed to the project.
-
-## License
-For open source projects, say how it is licensed.
-
-## Project status
-If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..f57a6fa
--- /dev/null
+++ b/index.html
@@ -0,0 +1,13 @@
+<!doctype html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <link rel="shortcut icon" href="src/assets/igem-2022.svg" type="image/x-icon">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <title>%VITE_TEAM_NAME% - iGEM %VITE_TEAM_YEAR%</title>
+  </head>
+  <body>
+    <div id="root"></div>
+    <script type="module" src="/src/main.tsx"></script>
+  </body>
+</html>
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..899cfc1
--- /dev/null
+++ b/package.json
@@ -0,0 +1,34 @@
+{
+  "name": "team-slug",
+  "version": "0.0.1",
+  "license": "CC-BY-4.0",
+  "type": "module",
+  "scripts": {
+    "dev": "vite",
+    "build": "tsc && vite build",
+    "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
+    "format": "prettier --write \"**/*.{ts,tsx,md,json,css}\"",
+    "preview": "vite preview"
+  },
+  "dependencies": {
+    "bootstrap": "^5.3.3",
+    "react": "^18.2.0",
+    "react-bootstrap": "^2.10.2",
+    "react-dom": "^18.2.0",
+    "react-router-dom": "^6.23.0"
+  },
+  "devDependencies": {
+    "@types/node": "^20.12.10",
+    "@types/react": "^18.2.66",
+    "@types/react-dom": "^18.2.22",
+    "@typescript-eslint/eslint-plugin": "^7.2.0",
+    "@typescript-eslint/parser": "^7.2.0",
+    "@vitejs/plugin-react": "^4.2.1",
+    "eslint": "^8.57.0",
+    "eslint-plugin-react-hooks": "^4.6.0",
+    "eslint-plugin-react-refresh": "^0.4.6",
+    "prettier": "^3.2.5",
+    "typescript": "^5.2.2",
+    "vite": "^5.2.0"
+  }
+}
diff --git a/src/assets/igem-2022.svg b/src/assets/igem-2022.svg
new file mode 100644
index 0000000..2c826a2
--- /dev/null
+++ b/src/assets/igem-2022.svg
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Generator: Adobe Illustrator 26.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 332.6 332.6" style="enable-background:new 0 0 332.6 332.6;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#2BA946;}
+</style>
+<path class="st0" d="M317.3,132.6H281l-0.5-0.2c-3.7-8.8-5.8-14-9.3-22.3c-0.2-0.5-0.1-1,0.3-1.4l25.3-25.3c6-6,6-15.7,0-21.6  l-26-26c-6-6-15.7-6-21.6,0l-24.7,24.7c-0.4,0.4-0.9,0.5-1.4,0.3c-8.3-3.4-14.3-5.9-22.4-9.3c-0.5-0.2-0.8-0.7-0.8-1.2V15.4  C200,6.8,193.1,0,184.7,0h-36.8c-8.4,0-15.3,6.8-15.3,15.3v34.2c0,0.5-0.3,0.9-0.7,1.1c-7.7,3.7-13.8,6.6-21.9,10.5  c-0.5,0.2-1.1,0.1-1.4-0.2L83.3,35.7c-6-6-15.7-6-21.6,0l-26,26c-6,6-6,15.7,0,21.6l25.1,25.1c0.4,0.4,0.5,0.9,0.3,1.4  c-3.2,8.3-5.2,13.2-8.6,22c-0.2,0.5-0.7,0.8-1.2,0.8c-4.1,0-22.4,0-36,0c-8.4,0-15.3,6.8-15.3,15.3v36.8c0,8.4,6.8,15.3,15.3,15.3  h36.1c0.5,0,1,0.3,1.2,0.8c3.4,8.7,5.3,13.7,8.5,22c0.2,0.5,0.1,1-0.3,1.4c-2.8,2.8-15.6,15.6-25.1,25.1c-6,6-6,15.7,0,21.6l26,26  c6,6,15.7,6,21.6,0l25.3-25.3c0.4-0.4,1-0.5,1.4-0.2c8,3.8,14.1,6.7,21.8,10.4c0.4,0.2,0.7,0.7,0.7,1.1v34.4  c0,8.4,6.8,15.3,15.3,15.3h36.8c8.4,0,15.3-6.8,15.3-15.3v-35.1c0-0.5,0.3-1,0.8-1.2c7.9-3.3,14.3-5.9,22.3-9.2  c0.5-0.2,1-0.1,1.4,0.3l24.8,24.8c6,6,15.7,6,21.6,0l26-26c6-6,6-15.7,0-21.6l-25.4-25.4c-0.4-0.4-0.5-0.9-0.3-1.4  c3.5-8.4,5.6-13.6,9.3-22.4h0.1h36.7c8.4,0,15.3-6.8,15.3-15.3V148C332.6,139.4,325.7,132.6,317.3,132.6z M166.3,232.9  c-36.8,0-66.7-29.9-66.7-66.7c0-36.8,29.9-66.7,66.7-66.7c36.8,0,66.7,29.9,66.7,66.7C233,203,203.1,232.9,166.3,232.9z"/>
+</svg>
\ No newline at end of file
diff --git a/src/components/AttributionForm/index.tsx b/src/components/AttributionForm/index.tsx
new file mode 100644
index 0000000..4f358aa
--- /dev/null
+++ b/src/components/AttributionForm/index.tsx
@@ -0,0 +1,28 @@
+function AttributionForm() {
+  const team_name = import.meta.env.VITE_TEAM_NAME;
+
+  // Listen to size change and update form height
+  window.addEventListener("message", function (e) {
+    if (e.origin === "https://attributions.igem.org") {
+      const { type, data } = JSON.parse(e.data);
+      if (type === "igem-attribution-form") {
+        const element = document.getElementById("igem-attribution-form");
+        if (element) {
+          element.style.height = `${data + 50}px`;
+        }
+      }
+    }
+  });
+
+  return (
+    <>
+      <iframe
+        style={{ width: "100%" }}
+        id="igem-attribution-form"
+        src={`https://attributions.igem.org?team=${team_name}&year=2024`}
+      />
+    </>
+  );
+}
+
+export default AttributionForm;
diff --git a/src/components/Footer/index.tsx b/src/components/Footer/index.tsx
new file mode 100644
index 0000000..035589f
--- /dev/null
+++ b/src/components/Footer/index.tsx
@@ -0,0 +1,82 @@
+import { stringToSlug } from "../../utils";
+
+function ExampleFooter() {
+  const team_year = import.meta.env.VITE_TEAM_YEAR;
+  const team_name = import.meta.env.VITE_TEAM_NAME;
+  const team_slug = stringToSlug(team_name);
+
+  return (
+    <footer className="pt-5 pb-5 footer py-5 mt-5 bg-dark text-white">
+      <div className="container">
+        <div className="row mb-4">
+          <div className="col-lg-6 col-xs-12">
+            <h4 className="mb-3">Heading</h4>
+            <p>
+              Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ac
+              ante mollis quam tristique convallis
+            </p>
+          </div>
+          <div className="col-lg-3 col-xs-12">
+            <h4 className="mt-lg-0 mt-sm-3">Links</h4>
+            <ul className="m-2 p-2">
+              <li>
+                <a href="#">Lorem ipsum</a>
+              </li>
+              <li>
+                <a href="#">Nam mauris velit</a>
+              </li>
+              <li>
+                <a href="#">Etiam vitae mauris</a>
+              </li>
+              <li>
+                <a href="#">Fusce scelerisque</a>
+              </li>
+              <li>
+                <a href="#">Sed faucibus</a>
+              </li>
+              <li>
+                <a href="#">Mauris efficitur nulla</a>
+              </li>
+            </ul>
+          </div>
+          <div className="col-lg-3 col-xs-12">
+            <h4 className="mt-lg-0 mt-sm-4 mb-3">Contact</h4>
+            <p>22, Lorem ipsum dolor, consectetur adipiscing</p>
+            <p className="mb-0">(541) 754-3010</p>
+            <p>info@hsdf.com</p>
+          </div>
+        </div>
+        <hr />
+        {/* The following MUST be on every page: license information and link to the repository on gitlab.igem.org */}
+        <div className="row mt-4">
+          <div className="col">
+            <p className="mb-0">
+              <small>
+                © 2024 - Content on this site is licensed under a{" "}
+                <a
+                  className="subfoot"
+                  href="https://creativecommons.org/licenses/by/4.0/"
+                  rel="license"
+                >
+                  Creative Commons Attribution 4.0 International license
+                </a>
+                .
+              </small>
+            </p>
+            <p>
+              <small>
+                The repository used to create this website is available at{" "}
+                <a href={`https://gitlab.igem.org/${team_year}/${team_slug}`}>
+                  gitlab.igem.org/{team_year}/{team_slug}
+                </a>
+                .
+              </small>
+            </p>
+          </div>
+        </div>
+      </div>
+    </footer>
+  );
+}
+
+export default ExampleFooter;
diff --git a/src/components/Header/index.tsx b/src/components/Header/index.tsx
new file mode 100644
index 0000000..10ff082
--- /dev/null
+++ b/src/components/Header/index.tsx
@@ -0,0 +1,26 @@
+import React from "react";
+import { useDocumentTitle } from "../../utils";
+
+interface HeaderProps {
+  title: string;
+  lead: string;
+}
+
+const ExampleHeader: React.FC<HeaderProps> = ({ title, lead }) => {
+  useDocumentTitle(title);
+
+  return (
+    <header className="bg-hero py-5 mb-5">
+      <div className="container h-100">
+        <div className="row h-100 align-items-center">
+          <div className="col-lg-12">
+            <h1 className="display-4 text-white mt-5 mb-2">{title}</h1>
+            <p className="lead mb-5 text-white-50">{lead}</p>
+          </div>
+        </div>
+      </div>
+    </header>
+  );
+};
+
+export default ExampleHeader;
diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx
new file mode 100644
index 0000000..1cd7253
--- /dev/null
+++ b/src/components/Navbar/index.tsx
@@ -0,0 +1,47 @@
+import Container from "react-bootstrap/Container";
+import Nav from "react-bootstrap/Nav";
+import Navbar from "react-bootstrap/Navbar";
+import NavDropdown from "react-bootstrap/NavDropdown";
+import { Link } from "react-router-dom";
+import Pages from "../../pages.ts";
+
+function ExampleNavbar() {
+  const pages = [];
+  for (const page of Pages) {
+    if ("folder" in page && page.folder) {
+      const folder = [];
+      for (const subpage of page.folder) {
+        folder.push(
+          <NavDropdown.Item as={Link} to={subpage.path} target="_blank">
+            {subpage.name}
+          </NavDropdown.Item>,
+        );
+      }
+      pages.push(
+        <NavDropdown title={page.name} id="basic-nav-dropdown">
+          {folder}
+        </NavDropdown>,
+      );
+    } else if ("path" in page && page.path) {
+      pages.push(
+        <Nav.Link as={Link} to={page.path} target="_blank">
+          {page.name}
+        </Nav.Link>,
+      );
+    }
+  }
+
+  return (
+    <Navbar expand="lg" className="bg-body-tertiary" fixed="top">
+      <Container>
+        <Navbar.Brand>{import.meta.env.VITE_TEAM_NAME}</Navbar.Brand>
+        <Navbar.Toggle aria-controls="basic-navbar-nav" />
+        <Navbar.Collapse id="basic-navbar-nav">
+          <Nav className="left-aligned">{pages}</Nav>
+        </Navbar.Collapse>
+      </Container>
+    </Navbar>
+  );
+}
+
+export default ExampleNavbar;
diff --git a/src/components/NotFound/index.tsx b/src/components/NotFound/index.tsx
new file mode 100644
index 0000000..43b085e
--- /dev/null
+++ b/src/components/NotFound/index.tsx
@@ -0,0 +1,20 @@
+import { Link } from "react-router-dom";
+
+function NotFound() {
+  return (
+    <>
+      <div className="d-flex flex-column justify-content-center align-items-center">
+        <h1 className="not-found-title" style={{ fontSize: "56pt" }}>
+          404
+        </h1>
+        <div>
+          <Link to="/" className="btn btn-secondary btn-xl">
+            Back to Home
+          </Link>
+        </div>
+      </div>
+    </>
+  );
+}
+
+export default NotFound;
diff --git a/src/components/index.tsx b/src/components/index.tsx
new file mode 100644
index 0000000..9d15010
--- /dev/null
+++ b/src/components/index.tsx
@@ -0,0 +1,4 @@
+export { default as Navbar } from "./Navbar";
+export { default as Header } from "./Header";
+export { default as Footer } from "./Footer";
+export { default as NotFound } from "./NotFound";
diff --git a/src/containers/App/App.css b/src/containers/App/App.css
new file mode 100644
index 0000000..153905b
--- /dev/null
+++ b/src/containers/App/App.css
@@ -0,0 +1,65 @@
+body {
+  padding-top: 56px;
+}
+
+.left-aligned {
+  margin-left: auto;
+}
+
+.bg-dark {
+  background-color: #343a40 !important;
+}
+
+.bg-hero {
+  background-color: #45b06cff;
+}
+
+/* CALLOUT */
+.bd-callout {
+  padding: 1.25rem;
+  margin-top: 1.25rem;
+  margin-bottom: 1.25rem;
+  border: 1px solid #e9ecef;
+  border-left-width: 0.25rem;
+  border-radius: 0.25rem;
+}
+
+.bd-callout h4 {
+  margin-bottom: 0.25rem;
+}
+
+.bd-callout p:last-child {
+  margin-bottom: 0;
+}
+
+.bd-callout code {
+  border-radius: 0.25rem;
+}
+
+.bd-callout + .bd-callout {
+  margin-top: -0.25rem;
+}
+
+.bd-callout-info {
+  border-left-color: #5bc0de;
+}
+
+.bd-callout-warning {
+  border-left-color: #f0ad4e;
+}
+
+.bd-callout-danger {
+  border-left-color: #d9534f;
+}
+
+/* footer */
+footer a {
+  color: white;
+  font-weight: bold;
+  text-decoration: none;
+}
+
+footer a:hover {
+  color: white;
+  text-decoration: underline;
+}
diff --git a/src/containers/App/App.tsx b/src/containers/App/App.tsx
new file mode 100644
index 0000000..a05f9ea
--- /dev/null
+++ b/src/containers/App/App.tsx
@@ -0,0 +1,111 @@
+import "./App.css";
+import "bootstrap/dist/css/bootstrap.min.css";
+import { Route, Routes } from "react-router-dom";
+import { Footer, Header, Navbar, NotFound } from "../../components";
+import { getPathMapping, stringToSlug, useDocumentTitle } from "../../utils";
+import {
+  AttributionsPage,
+  ContributionPage,
+  DescriptionPage,
+  EducationPage,
+  EngineeringPage,
+  EntrepreneurshipPage,
+  ExperimentsPage,
+  HardwarePage,
+  HomePage,
+  HumanPracticesPage,
+  InclusivityPage,
+  MeasurementPage,
+  ModelPage,
+  NotebookPage,
+  PlantPage,
+  ResultsPage,
+  SafetyPage,
+  SoftwarePage,
+  SustainablePage,
+  TeamPage,
+} from "../../contents";
+
+const App = () => {
+  const pathMapping = getPathMapping();
+  const currentPath =
+    location.pathname
+      .split(`${stringToSlug(import.meta.env.VITE_TEAM_NAME)}`)
+      .pop() || "/";
+
+  // Set Page Title
+  const title =
+    currentPath in pathMapping ? pathMapping[currentPath].title : "Not Found";
+  useDocumentTitle(title);
+
+  return (
+    <>
+      {/* Navigation */}
+      <Navbar />
+
+      {/* Header */}
+      <Routes>
+        {Object.keys(pathMapping).map((path) => {
+          const title = pathMapping[path].title;
+          const lead = pathMapping[path].lead;
+          return (
+            <Route
+              key={path}
+              path={path}
+              element={<Header title={title} lead={lead} />}
+            />
+          );
+        })}
+        <Route
+          path="*"
+          element={
+            <Header
+              title="Not Found"
+              lead="The page you are looking for does not exist."
+            />
+          }
+        />
+      </Routes>
+
+      {/* Page Content */}
+      <div className="container">
+        <Routes>
+          {/* Home */}
+          <Route path="/" element={<HomePage />} />
+          {/* Team */}
+          <Route path="/team" element={<TeamPage />} />
+          <Route path="/attributions" element={<AttributionsPage />} />
+          {/*  Project  */}
+          <Route path="/contribution" element={<ContributionPage />} />
+          <Route path="/description" element={<DescriptionPage />} />
+          <Route path="/engineering" element={<EngineeringPage />} />
+          <Route path="/experiments" element={<ExperimentsPage />} />
+          <Route path="/notebook" element={<NotebookPage />} />
+          <Route path="/results" element={<ResultsPage />} />
+          {/*  Safety  */}
+          <Route path="/safety" element={<SafetyPage />} />
+          {/*  Human Practices  */}
+          <Route path="/human-practices" element={<HumanPracticesPage />} />
+          {/*  Awards  */}
+          <Route path="/education" element={<EducationPage />} />
+          <Route path="/entrepreneurship" element={<EntrepreneurshipPage />} />
+          <Route path="/hardware" element={<HardwarePage />} />
+          <Route path="/inclusivity" element={<InclusivityPage />} />
+          <Route path="/measurement" element={<MeasurementPage />} />
+          <Route path="/model" element={<ModelPage />} />
+          <Route path="/plant" element={<PlantPage />} />
+          <Route path="/software" element={<SoftwarePage />} />
+          <Route path="/sustainable" element={<SustainablePage />} />
+          {/* 404 */}
+          <Route path="*" element={<NotFound />} />
+        </Routes>
+      </div>
+
+      {/* Footer */}
+      {/* MUST mention license AND have a link to team wiki's repository on gitlab.igem.org */}
+      <Footer />
+    </>
+  );
+};
+
+export default App;
diff --git a/src/contents/attributions.tsx b/src/contents/attributions.tsx
new file mode 100644
index 0000000..5bc067f
--- /dev/null
+++ b/src/contents/attributions.tsx
@@ -0,0 +1,39 @@
+import AttributionForm from "../components/AttributionForm";
+
+const AttributionsPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Bronze Medal Criterion #2</h4>
+            <p>
+              Describe what work your team members did and what other people did
+              for your project.
+            </p>
+            <p>
+              The form that bas been embded in an iframe in this page shows your
+              team's Project Attribution form. This page must keep the form as
+              it is.
+            </p>
+            <p>
+              If you use a different website framework, make sure to embed the
+              right URL for your team's form.
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/deliverables/project-attribution">
+                Project Attribution page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+      <AttributionForm />
+    </>
+  );
+};
+
+export default AttributionsPage;
diff --git a/src/contents/contribution.tsx b/src/contents/contribution.tsx
new file mode 100644
index 0000000..b10f0a3
--- /dev/null
+++ b/src/contents/contribution.tsx
@@ -0,0 +1,36 @@
+const ContributionPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Bronze Medal Criterion #4</h4>
+            <p>
+              Make a useful contribution for future iGEM teams. Use this page to
+              document that contribution.
+            </p>
+            <p>
+              If you are making a contribution by adding information to an
+              existing Part or creating a new Part, you must document your
+              contribution on the Part's Main Page on the{" "}
+              <a href="http://parts.igem.org/Main_Page">Registry</a> for your
+              team to be eligible for this criteria. You can use this page to
+              link to that part and include additional information about your
+              contribution.
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/medals">
+                2024 Medals Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default ContributionPage;
diff --git a/src/contents/description.tsx b/src/contents/description.tsx
new file mode 100644
index 0000000..93e0fa2
--- /dev/null
+++ b/src/contents/description.tsx
@@ -0,0 +1,103 @@
+const DescriptionPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Bronze Medal Criterion #3</h4>
+            <p>Describe how and why you chose your iGEM project.</p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/medals">
+                2024 Medals Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col-lg-8">
+          <h2>What should this page contain?</h2>
+          <hr />
+          <ul>
+            <li>A clear and concise description of your project.</li>
+            <li>
+              A detailed explanation of why your team chose to work on this
+              particular project.
+            </li>
+            <li>References and sources to document your research.</li>
+            <li>
+              Use illustrations and other visual resources to explain your
+              project.
+            </li>
+          </ul>
+        </div>
+        <div className="col-lg-4">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="https://2022.igem.wiki/dtu-denmark/description">
+                2022 DTU-Denmark
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:ITESO_Guadalajara/Description">
+                2019 ITESO Guadalajara
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Technion-Israel/Description">
+                2020 Technion Israel
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Botchan_Lab_Tokyo/Description">
+                2020 Botchan Lab Tokyo
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:St_Andrews/Description">
+                2020 St Andrews
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:MIT/Description">2020 MIT</a>
+            </li>
+          </ul>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col-lg-8">
+          <h2>Some advice</h2>
+          <hr />
+          <p>
+            We encourage you to put up a lot of information and content on your
+            wiki, but we also encourage you to include summaries as much as
+            possible. If you think of the sections in your project description
+            as the sections in a publication, you should try to be concise,
+            accurate, and unambiguous in your achievements. Your Project
+            Description should include more information than your project
+            abstract.
+          </p>
+        </div>
+        <div className="col-lg-4">
+          <h2>References</h2>
+          <hr />
+          <p>
+            iGEM teams are encouraged to record references you use during the
+            course of your research. They should be posted somewhere on your
+            wiki so that judges and other visitors can see how you thought about
+            your project and what works inspired you.
+          </p>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default DescriptionPage;
diff --git a/src/contents/education.tsx b/src/contents/education.tsx
new file mode 100644
index 0000000..03fb319
--- /dev/null
+++ b/src/contents/education.tsx
@@ -0,0 +1,78 @@
+const EducationPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Best Education</h4>
+            <p>
+              How have you developed new opportunities to include more people in
+              shaping synthetic biology? Innovative educational tools and
+              outreach activities have the ability to establish a two-way
+              dialogue with new communities by discussing public values and the
+              science behind synthetic biology. Document your approach and what
+              was learned by everyone involved to compete for this award.
+            </p>
+            <p>
+              To compete for the Best Education prize, please describe your work
+              on this page and also fill out the description on the{" "}
+              <a href="https://competition.igem.org/deliverables/judging-form">
+                judging form
+              </a>
+              .
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/awards">
+                2024 Awards Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="https://2020.igem.org/Team:CCA_San_Diego/Education">
+                2020 CCA San Diego
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Lambert_GA/Education">
+                2020 Lambert GA
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Stanford/Education">
+                2020 Stanford
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Waseda/Education">
+                2020 Waseda
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Fudan/Education">
+                2020 Fudan
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Toulouse_INSA-UPS/Education">
+                2020 Toulouse INSA UPS
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default EducationPage;
diff --git a/src/contents/engineering.tsx b/src/contents/engineering.tsx
new file mode 100644
index 0000000..08e5291
--- /dev/null
+++ b/src/contents/engineering.tsx
@@ -0,0 +1,36 @@
+const EngineeringPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Silver Medal Criterion #1</h4>
+            <p>
+              Demonstrate engineering success in a part of your project by going
+              through at least one iteration of the engineering design cycle.
+              This achievement should be distinct from your Contribution for
+              Bronze.
+            </p>
+            <p>
+              If you plan to show engineering success by creating a new Part
+              that has been shown to work as expected, you must document your
+              contribution on the Part's Main Page on the{" "}
+              <a href="http://parts.igem.org/Main_Page">Registry</a> for your
+              team to be eligible for this criteria.
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/medals">
+                2024 Medals Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default EngineeringPage;
diff --git a/src/contents/entrepreneurship.tsx b/src/contents/entrepreneurship.tsx
new file mode 100644
index 0000000..0dfb133
--- /dev/null
+++ b/src/contents/entrepreneurship.tsx
@@ -0,0 +1,106 @@
+const EntrepreneurshipPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Best Supporting Entrepreneurship</h4>
+            <p>
+              The Best Supporting Entrepreneurship award recognizes exceptional
+              effort to build a business case and commercialize an iGEM project.
+              This award is open to all teams to show that entrepreneurship is
+              something all teams can aspire to do with their project. This
+              award can go to an new project, or to a previous project that a
+              team aimed to commercialize. Have you filed a provisional patent
+              on your project/device/process? Have you raised money to build and
+              ship products? Have you pitched your idea to investors and
+              received money? As always in iGEM, the aim is to impress the
+              judges!
+            </p>
+            <p>
+              To compete for the Best Supporting Entrepreneurship prize, please
+              describe your work on this page and also fill out the description
+              on the{" "}
+              <a href="https://competition.igem.org/deliverables/judging-form">
+                judging form
+              </a>
+              .
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/awards">
+                2024 Awards Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col-lg-8">
+          <h2>Patents and intellectual property</h2>
+          <hr />
+          <p>
+            If your team is seriously considering commercializing and looking
+            into building a company after the competition, you may want to look
+            at how you are going to protect your work and secure investment.
+            Investors will usually require some form of intellectual protection,
+            so you may want to investigate how to apply for a patent or
+            provisional patent in your country and region before disclosing your
+            project at iGEM. Remember that you can only be evaluated in iGEM
+            based on what you share on your wiki and at the Jamboree, so any
+            work you don't present can't count towards your project.
+          </p>
+          <p>
+            This is an area where we are different as we care about sharing,
+            openness and contributing to the community and investors don't
+            always agree with these values. It is up to you and your team to
+            decide what to do. Remember that most universities have a
+            commercialization department and that you can talk to them before
+            coming to a decision.
+          </p>
+        </div>
+        <div className="col-lg-4">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="https://2019.igem.org/Team:UCopenhagen/Entrepreneurship">
+                2019 UCopenhagen
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Thessaly/Entrepreneurship">
+                2019 Thessaly
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:NCKU_Tainan/Entrepreneurship">
+                2019 NCKU Tainan
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:TAS_Taipei/Entrepreneurship">
+                2020 TAS Taipei
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:KCL_UK/Entrepreneurship">
+                2020 KCL UK
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Calgary/Entrepreneurship">
+                2020 Calgary
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default EntrepreneurshipPage;
diff --git a/src/contents/experiments.tsx b/src/contents/experiments.tsx
new file mode 100644
index 0000000..4796a53
--- /dev/null
+++ b/src/contents/experiments.tsx
@@ -0,0 +1,60 @@
+const ExperimentsPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col-lg-8">
+          <h2>What should this page contain?</h2>
+          <hr />
+          <p>
+            Describe the research, experiments, and protocols you used in your
+            iGEM project. These should be detailed enough for another team to
+            repeat your experiments.
+          </p>
+          <p>
+            If you made Parts this year, please remember to put all information,
+            characterization, and measurement data on the Part's Main Page on
+            the <a href="http://parts.igem.org/Main_Page">Registry</a>.
+          </p>
+        </div>
+        <div className="col-lg-4">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="https://2019.igem.org/Team:Nantes/Experiments">
+                2019 Nantes
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:TU_Eindhoven/Experiments">
+                2019 TU Eindhoven
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Mingdao/Demonstrate">
+                2019 Mingdao
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Amsterdam/Experiments">
+                2020 Amsterdam
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:NCTU_Formosa/Experiments">
+                2020 NCTU Formosa
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:USAFA/Experiments">
+                2020 USAFA
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default ExperimentsPage;
diff --git a/src/contents/hardware.tsx b/src/contents/hardware.tsx
new file mode 100644
index 0000000..1e789d2
--- /dev/null
+++ b/src/contents/hardware.tsx
@@ -0,0 +1,99 @@
+const HardwarePage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Best Hardware</h4>
+            <p>
+              This is a prize for the team that has developed a piece of
+              hardware for synthetic biology. Hardware in iGEM should make
+              synthetic biology based on standard parts easier, faster, better
+              or more accessible to our community. Did your team make a sensor
+              to help teams characterize parts? Did you make a robot that can
+              help teams perform experiments or do cloning more easily? Tell us
+              what your team did for this award!
+            </p>
+            <p>
+              To compete for the Best Hardware prize, please describe your work
+              on this page and also fill out the description on the{" "}
+              <a href="https://competition.igem.org/deliverables/judging-form">
+                judging form
+              </a>
+              .
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/awards">
+                2024 Awards Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col-lg-8">
+          <h2>Overview</h2>
+          <hr />
+          <p>
+            In addition to encouraging teams to work with DNA parts and build
+            biological devices in the lab, iGEM also encourages other types of
+            technical solutions for synthetic biology. This can include physical
+            devices (hardware) related to robotic assembly, microfluidics,
+            low-cost measurement devices, to name a few examples. There are many
+            exciting opportunities for hardware innovation in synthetic biology.
+          </p>
+        </div>
+        <div className="col-lg-4">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="http://2018.igem.org/Team:Valencia_UPV/Hardware">
+                2018 Valencia UPV
+              </a>
+            </li>
+            <li>
+              <a href="http://2018.igem.org/Team:Unesp_Brazil/Hardware">
+                2018 Unesp Brazil
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:BIT/Hardware">2019 BIT</a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Bielefeld-CeBiTec/Hardware">
+                2019 Bielefeld CeBiTec
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Nanjing-China/Hardware">
+                2019 Nanjing China
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Vilnius-Lithuania/Hardware">
+                2020 Vilnius Lithuania
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Aachen/Hardware">
+                2020 Aachen
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:ZJUT_China_B/Hardware">
+                2020 ZJUT China B
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default HardwarePage;
diff --git a/src/contents/home.tsx b/src/contents/home.tsx
new file mode 100644
index 0000000..a914c2b
--- /dev/null
+++ b/src/contents/home.tsx
@@ -0,0 +1,135 @@
+const HomePage = () => {
+  return (
+    <>
+      <div className="row">
+        <div className="col">
+          <h2>Before you start</h2>
+          <hr />
+          <p>Please read the following pages:</p>
+          <ul>
+            <li>
+              <a
+                href="https://competition.igem.org/deliverables/team-wiki"
+                target="_blank"
+              >
+                Wiki Requirements page
+              </a>
+            </li>
+            <li>
+              <a
+                href="https://competition.igem.org/judging/pages-for-awards"
+                target="_blank"
+              >
+                Standard URL Pages for Awards
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+      <div className="row mt-4">
+        <div className="col">
+          <h2>Styling your wiki</h2>
+          <hr />
+          <p>
+            Feel free to customize the page styling according to your
+            preferences, or you can simply leave the style as it is. It's wise
+            to focus on a clear content first, and on a clean design later.
+          </p>
+          <p>
+            Be cautious with the size of the assets like images, videos, and
+            more into your wiki. Large file sizes can hinder the presentation of
+            wikis due to slow internet connections. Remember to compress large
+            files before uploading them to iGEM servers.
+          </p>
+          <p>
+            This default wiki meets the requirements, enhances navigability, and
+            provides a user-friendly experience for visitors. You should not
+            feel obliged to go beyond the provided styling.
+          </p>
+        </div>
+      </div>
+      <div className="row mt-4">
+        <div className="col-lg-8">
+          <h2>Tips</h2>
+          <hr />
+          <p>
+            This wiki will be your team's first interaction with the rest of the
+            world, so here are a few tips to help you get started:
+          </p>
+          <ul>
+            <li>
+              State your accomplishments! Tell people what you have achieved
+              from the start.
+            </li>
+            <li>
+              Be clear about what you are doing and how you plan to do this.
+            </li>
+            <li>
+              You have a global audience! Consider the different backgrounds
+              that your users come from.
+            </li>
+            <li>
+              Make sure information is easy to find; nothing should be more than
+              3 clicks away.
+            </li>
+            <li>
+              Avoid using very small fonts and low contrast colors; information
+              should be easy to read.
+            </li>
+            <li>
+              Start documenting your project as early as possible; don't leave
+              anything to the last minute before the Wiki Freeze. For a complete
+              list of deadlines visit the{" "}
+              <a href="https://competition.igem.org/calendar" target="_blank">
+                iGEM Competition calendar
+              </a>
+            </li>
+            <li>Have lots of fun!</li>
+          </ul>
+        </div>
+        <div className="col-lg-4">
+          <h2>Inspiration</h2>
+          <hr />
+          <p>
+            You can also view other team wikis for inspiration! Here are some
+            examples:
+          </p>
+          <ul>
+            <li>
+              <a href="https://2022.igem.wiki/dtu-denmark">2022 DTU-Denmark</a>
+            </li>
+            <li>
+              <a href="https://2022.igem.wiki/virginia">2022 Virginia</a>
+            </li>
+            <li>
+              <a href="https://2022.igem.wiki/crete">2022 Crete</a>
+            </li>
+            <li>
+              <a href="https://2022.igem.wiki/estonia-tuit">
+                2022 Estonia_TUIT
+              </a>
+            </li>
+            <li>
+              <a href="https://2022.igem.wiki/ashesighana">2022 AshesiGhana</a>
+            </li>
+            <li>
+              <a href="https://2021.igem.org/Team:SDU-Denmark">
+                2021 SDU-Denmark
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:XMU-China">2020 XMU China </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:TAS_Taipei">
+                2020 TAS Taipei{" "}
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default HomePage;
diff --git a/src/contents/human-practices.tsx b/src/contents/human-practices.tsx
new file mode 100644
index 0000000..1817d99
--- /dev/null
+++ b/src/contents/human-practices.tsx
@@ -0,0 +1,140 @@
+const HumanPracticesPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Silver Medal Criterion #2</h4>
+            <p>
+              Explain how you have determined your work is responsible and good
+              for the world.
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/medals">
+                2024 Medals Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+
+          <div className="bd-callout bd-callout-info">
+            <h4>Best Integrated Human Practices</h4>
+            <p>
+              To compete for the Best Integrated Human Practices prize, please
+              describe your work on this page and also fill out the description
+              on the{" "}
+              <a href="https://competition.igem.org/deliverables/judging-form">
+                judging form
+              </a>
+              .
+            </p>
+            <p>
+              How does your project affect society and how does society
+              influence the direction of your project? How might ethical
+              considerations and stakeholder input guide your project purpose
+              and design and the experiments you conduct in the lab? How does
+              this feedback enter into the process of your work all through the
+              iGEM competition? Document a thoughtful and creative approach to
+              exploring these questions and how your project evolved in the
+              process to compete for this award!
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/awards">
+                2024 Awards Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col-lg-8">
+          <h2>Overview</h2>
+          <hr />
+          <p>
+            At iGEM we believe societal considerations should be upfront and
+            integrated throughout the design and execution of synthetic biology
+            projects. “Human Practices” refers to iGEM teams' efforts to
+            actively consider how the world affects their work and their work
+            affects the world. Through your Human Practices activities, your
+            team should demonstrate how you have thought carefully and
+            creatively about whether your project is responsible and good for
+            the world. We invite you to explore issues relating (but not
+            limited) to the ethics, safety, security, and sustainability of your
+            project, and to show how this exploration feeds back into your
+            project purpose, design, and execution.
+          </p>
+          <p>
+            Please note you can compete for the Silver Medal criterion #2 and
+            the Best Integrated Human Practices prize with this page.
+          </p>
+          <p>
+            For more information, please see the{" "}
+            <a href="https://responsibility.igem.org/human-practices/what-is-human-practices">
+              Human Practices Hub
+            </a>
+            .
+          </p>
+          <p>
+            On this page, your team should document all of your Human Practices
+            work and activities. You should write about the Human Practices
+            topics you considered in your project, document any activities you
+            conducted to explore these topics (such as engaging with experts and
+            stakeholders), describe why you took a particular approach
+            (including referencing any work you built upon), and explain if and
+            how you integrated takeaways from your Human Practices work back
+            into your project purpose, design and/or execution.
+          </p>
+        </div>
+        <div className="col-lg-4">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="https://2019.igem.org/Team:Thessaly/Human_Practices">
+                2019 Thessaly
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Linkoping_Sweden/Human_Practices">
+                2019 Linkoping Sweden
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:FDR-HB_Peru/Human_Practices">
+                2019 FDR HB Peru
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:William_and_Mary/Human_Practices">
+                2020 William and Mary
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Rochester/Human_Practices">
+                2020 Rochester
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Leiden/Human_Practices">
+                2020 Leiden
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Baltimore_BioCrew/Human_Practices">
+                2020 Baltimore BioCrew
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default HumanPracticesPage;
diff --git a/src/contents/inclusivity.tsx b/src/contents/inclusivity.tsx
new file mode 100644
index 0000000..a9e5859
--- /dev/null
+++ b/src/contents/inclusivity.tsx
@@ -0,0 +1,85 @@
+const InclusivityPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Inclusivity Award</h4>
+            <p>
+              The Inclusivity Award recognizes exceptional efforts to include
+              people with diverse identities in scientific research. Who is
+              allowed to have a voice in iGEM, synthetic biology, and science
+              more broadly? How have you developed new opportunities to
+              eliminate barriers and allow more people to contribute to,
+              participate in, and/or be represented by these communities? To
+              compete for this prize, activities do not have to be directly
+              related to your team’s project. Document your approach, how you
+              improved inclusivity, and what was learned.
+            </p>
+            <p>
+              To compete for the Inclusivity award, please describe your work on
+              this page and also fill out the description on the{" "}
+              <a href="https://competition.igem.org/deliverables/judging-form">
+                judging form
+              </a>
+              .
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/awards">
+                2024 Awards Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col-lg-8">
+          <h2>Overview</h2>
+          <hr />
+          <p>
+            We should all recognize the importance of building an open and
+            welcoming scientific community. A more diverse community involved in
+            creating knowledge and technology is more likely to produce a more
+            equitable and representative system. Every individual, regardless of
+            background or experience, should have an equal opportunity to engage
+            with scientific knowledge and technological development. Everyone
+            should be able to share their opinions on the societal implications
+            of research.
+          </p>
+        </div>
+        <div className="col-lg-4">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="https://2020.igem.org/Team:Fudan/Inclusion">
+                2020 Fudan
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:CCU_Taiwan/Inclusion">
+                2020 CCU Taiwan
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Concordia-Montreal/Inclusion">
+                2020 Concordia Montreal
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:CLS_CLSG_UK/Inclusione">
+                2020 CLS CLSG UK
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default InclusivityPage;
diff --git a/src/contents/index.tsx b/src/contents/index.tsx
new file mode 100644
index 0000000..ccfb48e
--- /dev/null
+++ b/src/contents/index.tsx
@@ -0,0 +1,25 @@
+export { default as HomePage } from "./home.tsx";
+// Team
+export { default as TeamPage } from "./team.tsx";
+export { default as AttributionsPage } from "./attributions.tsx";
+// Project
+export { default as ContributionPage } from "./contribution.tsx";
+export { default as DescriptionPage } from "./description.tsx";
+export { default as EngineeringPage } from "./engineering.tsx";
+export { default as ExperimentsPage } from "./experiments.tsx";
+export { default as NotebookPage } from "./notebook.tsx";
+export { default as ResultsPage } from "./results.tsx";
+// Safety
+export { default as SafetyPage } from "./safety.tsx";
+// Human Practices
+export { default as HumanPracticesPage } from "./human-practices.tsx";
+// Awards
+export { default as EducationPage } from "./education.tsx";
+export { default as EntrepreneurshipPage } from "./entrepreneurship.tsx";
+export { default as HardwarePage } from "./hardware.tsx";
+export { default as InclusivityPage } from "./inclusivity.tsx";
+export { default as MeasurementPage } from "./measurement.tsx";
+export { default as ModelPage } from "./model.tsx";
+export { default as PlantPage } from "./plant.tsx";
+export { default as SoftwarePage } from "./software.tsx";
+export { default as SustainablePage } from "./sustainable.tsx";
diff --git a/src/contents/measurement.tsx b/src/contents/measurement.tsx
new file mode 100644
index 0000000..2f1be9b
--- /dev/null
+++ b/src/contents/measurement.tsx
@@ -0,0 +1,89 @@
+const MeasurementPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Best Measurement</h4>
+            <p>
+              There are a lot of exciting Parts in the Registry, but many Parts
+              have still not been characterized. Designing great measurement
+              approaches for characterizing new parts, or developing and
+              implementing an efficient new method for characterizing thousands
+              of parts are good examples.
+            </p>
+            <p>
+              To compete for the Best Measurement prize, please describe your
+              work on this page and also fill out the description on the{" "}
+              <a href="https://competition.igem.org/deliverables/judging-form">
+                judging form
+              </a>
+              .
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/awards">
+                2024 Awards Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col-lg-8">
+          <h2>Overview</h2>
+          <hr />
+          <p>
+            {" "}
+            If you've done excellent work in measurement, you should consider
+            nominating your team for this special prize. Synthetic Biology needs
+            great measurement approaches for characterizing parts, and efficient
+            new methods for characterizing many parts at once. If you've done
+            something exciting in the area of Measurement, describe it here!
+          </p>
+        </div>
+        <div className="col-lg-4">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="http://2018.igem.org/Team:UC_Davis/Measurement">
+                2018 UC Davis
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Newcastle/Measurement">
+                2019 Newcastle
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Evry_Paris-Saclay/Measurement">
+                2019 Evry Paris Saclay
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:GENAS_China/Measurement">
+                2019 GENAS China
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Calgary/Measurement">
+                2020 Calgary
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:CSMU_Taiwan/Measurement">
+                2020 CSMU Taiwan
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default MeasurementPage;
diff --git a/src/contents/model.tsx b/src/contents/model.tsx
new file mode 100644
index 0000000..7ca7c5a
--- /dev/null
+++ b/src/contents/model.tsx
@@ -0,0 +1,92 @@
+const ModelPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Best Model</h4>
+            <p>
+              Models and computer simulations provide a great way to describe
+              the functioning and operation of BioBrick Parts and Devices.
+              Synthetic biology is an engineering discipline and part of
+              engineering is simulation and modeling to determine system
+              behavior before building your design. Designing and simulating can
+              be iterated many times in a computer before moving to the lab.
+              This award is for teams who build a model of their system and use
+              it to inform system design or simulate expected behavior before or
+              in conjunction with experiments in the wetlab.
+            </p>
+            <p>
+              To compete for the Best Model prize, please describe your work on
+              this page and also fill out the description on the{" "}
+              <a href="https://competition.igem.org/deliverables/judging-form">
+                judging form
+              </a>
+              .
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/awards">
+                2024 Awards Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col-lg-8">
+          <h2>Overview</h2>
+          <hr />
+          <p>
+            Mathematical models and computer simulations provide a great way to
+            describe the function and operation of Parts and Devices. Synthetic
+            Biology is an engineering discipline, and part of engineering is
+            simulation and modeling to determine the behavior of your design
+            before you build it. Designing and simulating can be iterated many
+            times in a computer before moving to the lab.
+          </p>
+        </div>
+        <div className="col-lg-4">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="http://2018.igem.org/Team:GreatBay_China/Model">
+                2018 GreatBay China
+              </a>
+            </li>
+            <li>
+              <a href="http://2018.igem.org/Team:Leiden/Model">2018 Leiden</a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:IISER_Kolkata/Model">
+                2019 IISER Kolkata
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Exeter/Model">2019 Exeter</a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Mingdao/Model">
+                2019 Mingdao
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Harvard/Model">
+                2020 Harvard
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Leiden/Model">2020 Leiden</a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default ModelPage;
diff --git a/src/contents/notebook.tsx b/src/contents/notebook.tsx
new file mode 100644
index 0000000..e8db1ea
--- /dev/null
+++ b/src/contents/notebook.tsx
@@ -0,0 +1,59 @@
+const NotebookPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col-lg-8">
+          <h2>What should this page contain?</h2>
+          <hr />
+          <ul>
+            <li>Chronological notes of what your team is doing.</li>
+            <li>Brief descriptions of daily important events.</li>
+            <li>Pictures of your progress.</li>
+            <li>Mention who participated in what task.</li>
+          </ul>
+        </div>
+        <div className="col-lg-4">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="http://2018.igem.org/Team:Munich/Notebook">
+                2018 Munich
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Georgia_State/Notebook">
+                2019 Georgia State
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Newcastle/Notebook">
+                2019 Newcastle
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:IISER-Pune-India/Notebook">
+                2020 IISER Pune India
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Lund/Notebook">2020 Lund</a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:NOVA_LxPortugal/Notebook">
+                2020 NOVA LxPortugal
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:RDFZ-China/NoteBook">
+                2020 RDFZ China
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default NotebookPage;
diff --git a/src/contents/plant.tsx b/src/contents/plant.tsx
new file mode 100644
index 0000000..e1a6808
--- /dev/null
+++ b/src/contents/plant.tsx
@@ -0,0 +1,74 @@
+const PlantPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Best Plant Synthetic Biology</h4>
+            <p>
+              This award is designed to celebrate exemplary work done in plant
+              synthetic biology. Did you build a project in a plant chassis? Did
+              you submit plant parts to the Registry? This award could also be
+              given to a team working with algae or another photosynthetic
+              chassis. Show us what you made and remember to adhere to iGEM
+              safety guidelines!
+            </p>
+            <p>
+              To compete for the Best Plant Synthetic Biology prize, please
+              describe your work on this page and also fill out the description
+              on the{" "}
+              <a href="https://competition.igem.org/deliverables/judging-form">
+                judging form
+              </a>
+              .
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/awards">
+                2024 Awards Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="http://2018.igem.org/Team:Cardiff_Wales/Plant">
+                2018 Cardiff Wales
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Sorbonne_U_Paris/Plant">
+                2019 Sorbonne U Paris
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:TU_Kaiserslautern/Plant">
+                2019 TU Kaiserslautern
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Humboldt_Berlin/Plant">
+                2019 Humboldt Berlin
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Sorbonne_U_Paris/Plant">
+                2020 Sorbonne U Paris
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default PlantPage;
diff --git a/src/contents/results.tsx b/src/contents/results.tsx
new file mode 100644
index 0000000..c575eef
--- /dev/null
+++ b/src/contents/results.tsx
@@ -0,0 +1,107 @@
+const ResultsPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col-lg-5">
+          <h2>What should this page contain?</h2>
+          <hr />
+          <ul>
+            <li>Clearly and objectively describe the results of your work.</li>
+            <li>Future plans for the project.</li>
+            <li>Considerations for replicating the experiments.</li>
+          </ul>
+        </div>
+        <div className="col-lg-7">
+          <h2>Describe what your results mean</h2>
+          <hr />
+          <ul>
+            <li>
+              Interpretation of the results obtained during your project. Don't
+              just show a plot/figure/graph/other, tell us what you think the
+              data means. This is an important part of your project that the
+              judges will look for.
+            </li>
+            <li>
+              Show data, but remember{" "}
+              <b>
+                all measurement and characterization data must also be on the
+                Part's Main Page on the{" "}
+                <a href="http://parts.igem.org/Main_Page">Registry</a>.
+              </b>{" "}
+              Otherwise these data will not be in consideration for any medals
+              or part awards!
+            </li>
+            <li>
+              Consider including an analysis summary section to discuss what
+              your results mean. Judges like to read what you think your data
+              means, beyond all the data you have acquired during your project.
+            </li>
+          </ul>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col-lg-8">
+          <h2>Project Achievements</h2>
+          <hr />
+          <p>
+            You can also include a list of bullet points (and links) of the
+            successes and failures you have had over your summer. It is a quick
+            reference page for the judges to see what you achieved during your
+            summer.
+          </p>
+          <ul>
+            <li>
+              A list of linked bullet points of the successful results during
+              your project
+            </li>
+            <li>
+              A list of linked bullet points of the unsuccessful results during
+              your project. This is about being scientifically honest. If you
+              worked on an area for a long time with no success, tell us so we
+              know where you put your effort.
+            </li>
+          </ul>
+        </div>
+        <div className="col-lg-4">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="https://2019.igem.org/Team:Newcastle/Results">
+                2019 Newcastle
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Munich/Results">
+                2019 Munich
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Tec-Chihuahua/Results">
+                2019 Tec Chihuahua
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Aalto-Helsinki/Results">
+                2020 Aalto Helsinki
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:GreatBay_SCIE/Results">
+                2020 GreatBay SCIE
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Queens_Canada/Results">
+                2020 Queens Canada
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default ResultsPage;
diff --git a/src/contents/safety.tsx b/src/contents/safety.tsx
new file mode 100644
index 0000000..e321b96
--- /dev/null
+++ b/src/contents/safety.tsx
@@ -0,0 +1,94 @@
+const SafetyPage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Safety and Security Award</h4>
+            <p>
+              Synthetic biology will need to be used safely and securely if
+              local people are to solve local problems all around the world. The
+              Safety and Security Committee is challenging teams to apply
+              biological engineering approaches to manage risks associated with
+              synthetic biology. Can you take the next step in incremental
+              progress towards knowledge, understanding, and tools that will
+              make the use of synthetic biology safer and more secure?
+            </p>
+            <p>
+              To compete for the Safety and Security award, please describe your
+              work on this page and also fill out the description on the{" "}
+              <a href="https://competition.igem.org/deliverables/judging-form">
+                judging form
+              </a>
+              .
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/awards">
+                2024 Awards Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col">
+          <h2>What should this page contain?</h2>
+          <hr />
+          <p>
+            On this page of your wiki, you should write about how you are
+            addressing any safety issues in your project. The wiki is a place
+            where you can go beyond the questions on the safety forms, and write
+            about whatever safety topics are most interesting in your project.
+            (You do not need to copy your safety forms onto this wiki page.)
+          </p>
+          <div className="bd-callout bd-callout-info">
+            <p>
+              Please visit the{" "}
+              <a href="https://responsibility.igem.org/safety-policies/introduction">
+                Safety Policies page
+              </a>{" "}
+              to find this year's safety requirements & deadlines, and to learn
+              about safe & responsible research in iGEM.
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col-lg-8">
+          <h2>Safe Project Design</h2>
+          <hr />
+          <p>
+            Does your project include any safety features? Have you made certain
+            decisions about the design to reduce risks? Write about them here!
+            For example:
+          </p>
+          <ul>
+            <li>Choosing a non-pathogenic chassis</li>
+            <li>Choosing parts that will not harm humans / animals / plants</li>
+            <li>
+              Substituting safer materials for dangerous materials in a
+              proof-of-concept experiment
+            </li>
+            <li>Including an "induced lethality" or "kill-switch" device</li>
+          </ul>
+        </div>
+        <div className="col-lg-4">
+          <h2>Safe Lab Work</h2>
+          <hr />
+          <p>
+            What safety procedures do you use every day in the lab? Did you
+            perform any unusual experiments, or face any unusual safety issues?
+            Write about them here!
+          </p>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default SafetyPage;
diff --git a/src/contents/software.tsx b/src/contents/software.tsx
new file mode 100644
index 0000000..2e80f51
--- /dev/null
+++ b/src/contents/software.tsx
@@ -0,0 +1,83 @@
+const SoftwarePage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Best Software Tool</h4>
+            <p>
+              Regardless what's the topic, iGEM projects often create or adapt
+              computational tools to move the bigger project forward. Because
+              they are born out of a direct practical need, these software tools
+              (or new computational methods) can even prove surprisingly useful
+              for others. Without necessarily being big or complex, they can
+              make the crucial difference to a project's success. This award
+              tries to find and honor such "nuggets" of computational work. To
+              be eligible, your software has to be documented and made available
+              under an OSI-approved open source license. Teams nominating
+              themselves for this prize must host the source code of their
+              software on the dedicated repository on iGEM's GitLab.
+            </p>
+            <p>
+              To compete for the Best Software Tool prize, please describe your
+              work on this page and also fill out the description on the{" "}
+              <a href="https://competition.igem.org/deliverables/judging-form">
+                judging form
+              </a>
+              .
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/awards">
+                2024 Awards Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="https://2019.igem.org/Team:Sydney_Australia/Software">
+                2019 Sydney Australia
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:SMMU-China/Software">
+                2019 SMMU China
+              </a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:Grenoble-Alpes/Software">
+                2019 Grenoble Alpes
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:DTU-Denmark/Software">
+                2020 DTU Denmark
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:GunnVistaPingry_US/Software">
+                2020 GunnVistaPingry US
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Rochester/Software">
+                2020 Rochester
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default SoftwarePage;
diff --git a/src/contents/sustainable.tsx b/src/contents/sustainable.tsx
new file mode 100644
index 0000000..7fc6a33
--- /dev/null
+++ b/src/contents/sustainable.tsx
@@ -0,0 +1,74 @@
+const SustainablePage = () => {
+  return (
+    <>
+      <div className="row mt-4">
+        <div className="col">
+          <div className="bd-callout bd-callout-info">
+            <h4>Best Sustainable Development</h4>
+            <p>
+              The Sustainable Development Goals (SDGs) are a call to action to
+              integrally address global environmental, social, and economic
+              challenges. As the future leaders of synthetic biology research
+              and innovation, it’s your responsibility to participate in the
+              global conversations to help develop solutions towards meeting the
+              SDGs. We encourage you to demonstrate how you have evaluated your
+              project ideas against one or more of the SDGs, how you’ve
+              consulted with SDG stakeholders, and how you’ve begun to form
+              collaborations with other iGEM teams around the SDGs. You’re
+              encouraged to look back at previous iGEM projects to evaluate them
+              against the SDGs and build upon them.
+            </p>
+            <p>
+              To compete for the Best Sustainable Development prize, please
+              describe your work on this page and also fill out the description
+              on the{" "}
+              <a href="https://competition.igem.org/deliverables/judging-form">
+                judging form
+              </a>
+              .
+            </p>
+            <hr />
+            <p>
+              Please see the{" "}
+              <a href="https://competition.igem.org/judging/awards">
+                2024 Awards Page
+              </a>{" "}
+              for more information.
+            </p>
+          </div>
+        </div>
+      </div>
+
+      <div className="row mt-4">
+        <div className="col">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="https://2020.igem.org/Team:Calgary/Sustainable">
+                2020 Calgary
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Toulouse_INSA-UPS/Sustainable">
+                2020 Toulouse INSA UPS
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:TUDelft/Sustainable">
+                2020 TUDelft
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Lambert_GA/Sustainable">
+                2020 Lambert GA
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default SustainablePage;
diff --git a/src/contents/team.tsx b/src/contents/team.tsx
new file mode 100644
index 0000000..3341a85
--- /dev/null
+++ b/src/contents/team.tsx
@@ -0,0 +1,71 @@
+const TeamPage = () => {
+  return (
+    <>
+      <div className="row">
+        <div className="col-8">
+          <h2>What should this page contain?</h2>
+          <hr />
+          <ul>
+            <li>
+              Include pictures of your teammates, don't forget instructors and
+              advisors!
+            </li>
+            <li>
+              You can add a small biography or a few words from each team
+              member, to tell us what you like, and what motivated you to
+              participate in iGEM.
+            </li>
+            <li>
+              Take team pictures! Show us your school, your lab and little bit
+              of your city.
+            </li>
+            <li>
+              Remember that image galleries can help you showcase many pictures
+              while saving space.
+            </li>
+          </ul>
+          <div className="bd-callout bd-callout-info">
+            <strong>Important:</strong> Your wiki pages will be archived at the
+            end of the iGEM season and this content will remain online. Please
+            keep this in mind as you post photos and personal information on
+            this page.
+          </div>
+        </div>
+        <div className="col-4">
+          <h2>Inspirations</h2>
+          <hr />
+          <ul>
+            <li>
+              <a href="https://2019.igem.org/Team:CU/Team">2019 CU</a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:UANL/Team">2019 UANL</a>
+            </li>
+            <li>
+              <a href="https://2019.igem.org/Team:William_and_Mary/Team">
+                2019 William and Mary
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:BOKU-Vienna/Team">
+                2020 BOKU Vienna{" "}
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:CAU_China/Team_Member">
+                2020 CAU China
+              </a>
+            </li>
+            <li>
+              <a href="https://2020.igem.org/Team:Lethbridge/Members">
+                2020 Lethbridge
+              </a>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </>
+  );
+};
+
+export default TeamPage;
diff --git a/src/main.tsx b/src/main.tsx
new file mode 100644
index 0000000..884a4de
--- /dev/null
+++ b/src/main.tsx
@@ -0,0 +1,12 @@
+import React from "react";
+import ReactDOM from "react-dom/client";
+import App from "./containers/App/App.tsx";
+import { BrowserRouter } from "react-router-dom";
+
+ReactDOM.createRoot(document.getElementById("root")!).render(
+  <React.StrictMode>
+    <BrowserRouter basename={import.meta.env.BASE_URL}>
+      <App />
+    </BrowserRouter>
+  </React.StrictMode>,
+);
diff --git a/src/pages.ts b/src/pages.ts
new file mode 100644
index 0000000..71a8116
--- /dev/null
+++ b/src/pages.ts
@@ -0,0 +1,155 @@
+interface Base {
+  name: string;
+}
+
+class Folder implements Base {
+  name!: string;
+  folder!: Page[];
+}
+
+class Page implements Base {
+  name!: string;
+  title!: string;
+  path!: string;
+  lead?: string;
+}
+
+const Pages: (Page | Folder)[] = [
+  {
+    name: "Home",
+    title: "Home",
+    path: "/",
+    lead: "Welcome to iGEM 2024! Your team has been approved and you are ready to start the iGEM season!",
+  },
+  {
+    name: "Team",
+    folder: [
+      {
+        name: "Team",
+        title: "Team",
+        path: "/team",
+        lead: "On this page you can introduce your team members, instructors, and advisors.",
+      },
+      {
+        name: "Attributions",
+        title: "Attributions",
+        path: "/attributions",
+        lead: "This page must show the attribution form of your project. This includes the work done by each of the student members on your team and any work that was done by people outside of your team, including the host labs, advisors, instructors, and individuals not on the team roster. This requirement is not about literature references - these can and should be displayed throughout your wiki.",
+      },
+    ],
+  },
+  {
+    name: "Project",
+    folder: [
+      {
+        name: "Contribution",
+        title: "Contribution",
+        path: "/contribution",
+        lead: "Make a useful contribution for future iGEM teams. Use this page to document that contribution.",
+      },
+      {
+        name: "Description",
+        title: "Project Description",
+        path: "/description",
+        lead: "Describe how and why you chose your iGEM project.",
+      },
+      {
+        name: "Engineering",
+        title: "Engineering Success",
+        path: "/engineering",
+        lead: "Demonstrate engineering success in a part of your project by going through at least one iteration of the engineering design cycle.",
+      },
+      {
+        name: "Experiments",
+        title: "Experiments",
+        path: "/experiments",
+        lead: "Describe the research, experiments, and protocols you used in your iGEM project.",
+      },
+      {
+        name: "Notebook",
+        title: "Notebook",
+        path: "/notebook",
+        lead: "Document the dates you worked on your project. This should be a detailed account of the work done each day for your project.",
+      },
+      {
+        name: "Results",
+        title: "Results",
+        path: "/results",
+        lead: "You can describe the results of your project and your future plans here.",
+      },
+    ],
+  },
+  {
+    name: "Safety",
+    title: "Safety",
+    path: "/safety",
+    lead: "Describe all the safety issues of your project.",
+  },
+  {
+    name: "Human Practices",
+    title: "Human Practices",
+    path: "/human-practices",
+    lead: "We ask every team to think deeply and creatively about whether their project is responsible and good for the world. Consider how the world affects your work and how your work affects the world.",
+  },
+  {
+    name: "Awards",
+    folder: [
+      {
+        name: "Education",
+        title: "Education",
+        path: "/education",
+        lead: "Innovative educational tools and outreach activities have the ability to establish a two-way dialogue with new communities by discussing public values and the science behind synthetic biology.",
+      },
+      {
+        name: "Entrepreneurship",
+        title: "Entrepreneurship",
+        path: "/entrepreneurship",
+        lead: "The entrepreneurship prize recognizes exceptional effort to build a business case and commercialize an iGEM project.",
+      },
+      {
+        name: "Hardware",
+        title: "Hardware",
+        path: "/hardware",
+        lead: "Hardware in iGEM should make synthetic biology based on standard parts easier, faster, better, or more accessible to our community.",
+      },
+      {
+        name: "Inclusivity",
+        title: "Diversity and Inclusion",
+        path: "/inclusivity",
+        lead: "Every individual, regardless of background or experience, should have an equal opportunity to engage with scientific knowledge and technological development.",
+      },
+      {
+        name: "Measurement",
+        title: "Measurement",
+        path: "/measurement",
+        lead: "Synthetic Biology needs great measurement approaches for characterizing parts, and efficient new methods for characterizing many parts at once. Describe your measurement approaches on this page.",
+      },
+      {
+        name: "Model",
+        title: "Model",
+        path: "/model",
+        lead: "Explain your model's assumptions, data, parameters, and results in a way that anyone could understand.",
+      },
+      {
+        name: "Plant",
+        title: "Plant",
+        path: "/plant",
+        lead: "This award is designed to celebrate exemplary work done in plant synthetic biology.",
+      },
+      {
+        name: "Software",
+        title: "Software",
+        path: "/software",
+        lead: "Software in iGEM should make synthetic biology based on standard parts easier, faster, better or more accessible to our community.",
+      },
+      {
+        name: "Sustainable",
+        title: "Sustainable Development Goals",
+        path: "/sustainable",
+        lead: "Describe how you have evaluated your project ideas against one or more of the SDGs.",
+      },
+    ],
+  },
+];
+
+export default Pages;
diff --git a/src/utils/getPathMapping.ts b/src/utils/getPathMapping.ts
new file mode 100644
index 0000000..ad228b6
--- /dev/null
+++ b/src/utils/getPathMapping.ts
@@ -0,0 +1,27 @@
+import pages from "../pages.ts";
+
+const getPathMapping = () => {
+  const map: {
+    [key: string]: { name: string; title: string; lead: string };
+  } = {};
+  pages.forEach((item) => {
+    if ("folder" in item && item.folder) {
+      item.folder.forEach((page) => {
+        map[page.path] = {
+          name: page.name,
+          title: page.title,
+          lead: page.lead || "",
+        };
+      });
+    } else if ("path" in item && item.path) {
+      map[item.path] = {
+        name: item.name,
+        title: item.title,
+        lead: item.lead || "",
+      };
+    }
+  });
+  return map;
+};
+
+export default getPathMapping;
diff --git a/src/utils/index.ts b/src/utils/index.ts
new file mode 100644
index 0000000..2e75b30
--- /dev/null
+++ b/src/utils/index.ts
@@ -0,0 +1,3 @@
+export { default as getPathMapping } from "./getPathMapping";
+export { default as useDocumentTitle } from "./useDocumentTitle";
+export { default as stringToSlug } from "./stringToSlug";
diff --git a/src/utils/stringToSlug.ts b/src/utils/stringToSlug.ts
new file mode 100644
index 0000000..97e668d
--- /dev/null
+++ b/src/utils/stringToSlug.ts
@@ -0,0 +1,9 @@
+export default function stringToSlug(string: string): string {
+  let slug = String(string).toLowerCase();
+  slug = slug.replace(/[^a-z0-9-]/g, "-");
+  slug = slug.replace(/-+/g, "-");
+  // remove dashes at start and end
+  const start = slug.search(/[^-]/); // find index of first non-dash
+  const end = slug.search(/-+$/); // find index of first end dash
+  return slug.substring(start, end === -1 ? undefined : end);
+}
diff --git a/src/utils/useDocumentTitle.ts b/src/utils/useDocumentTitle.ts
new file mode 100644
index 0000000..5d25982
--- /dev/null
+++ b/src/utils/useDocumentTitle.ts
@@ -0,0 +1,9 @@
+import { useEffect } from "react";
+
+function useDocumentTitle(title: string) {
+  useEffect(() => {
+    document.title = `${title} | ${import.meta.env.VITE_TEAM_NAME} - iGEM ${import.meta.env.VITE_TEAM_YEAR}`;
+  }, [title]);
+}
+
+export default useDocumentTitle;
diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts
new file mode 100644
index 0000000..95c2059
--- /dev/null
+++ b/src/vite-env.d.ts
@@ -0,0 +1,10 @@
+/// <reference types="vite/client" />
+
+interface ImportMetaEnv {
+  readonly VITE_TEAM_NAME: string;
+  readonly VITE_TEAM_YEAR: string;
+}
+
+interface ImportMeta {
+  readonly env: ImportMetaEnv;
+}
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..a7fc6fb
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,25 @@
+{
+  "compilerOptions": {
+    "target": "ES2020",
+    "useDefineForClassFields": true,
+    "lib": ["ES2020", "DOM", "DOM.Iterable"],
+    "module": "ESNext",
+    "skipLibCheck": true,
+
+    /* Bundler mode */
+    "moduleResolution": "bundler",
+    "allowImportingTsExtensions": true,
+    "resolveJsonModule": true,
+    "isolatedModules": true,
+    "noEmit": true,
+    "jsx": "react-jsx",
+
+    /* Linting */
+    "strict": true,
+    "noUnusedLocals": true,
+    "noUnusedParameters": true,
+    "noFallthroughCasesInSwitch": true
+  },
+  "include": ["src"],
+  "references": [{ "path": "./tsconfig.node.json" }]
+}
diff --git a/tsconfig.node.json b/tsconfig.node.json
new file mode 100644
index 0000000..97ede7e
--- /dev/null
+++ b/tsconfig.node.json
@@ -0,0 +1,11 @@
+{
+  "compilerOptions": {
+    "composite": true,
+    "skipLibCheck": true,
+    "module": "ESNext",
+    "moduleResolution": "bundler",
+    "allowSyntheticDefaultImports": true,
+    "strict": true
+  },
+  "include": ["vite.config.ts"]
+}
diff --git a/vite.config.ts b/vite.config.ts
new file mode 100644
index 0000000..03a9118
--- /dev/null
+++ b/vite.config.ts
@@ -0,0 +1,21 @@
+import { defineConfig, loadEnv } from "vite";
+import react from "@vitejs/plugin-react";
+
+function stringToSlug(string: string): string {
+  let slug = String(string).toLowerCase();
+  slug = slug.replace(/[^a-z0-9-]/g, "-");
+  slug = slug.replace(/-+/g, "-");
+  // remove dashes at start and end
+  const start = slug.search(/[^-]/); // find index of first non-dash
+  const end = slug.search(/-+$/); // find index of first end dash
+  return slug.substring(start, end === -1 ? undefined : end);
+}
+
+// https://vitejs.dev/config/
+export default () => {
+  const env = loadEnv("dev", process.cwd());
+  return defineConfig({
+    base: `/${stringToSlug(env.VITE_TEAM_NAME)}/`,
+    plugins: [react()],
+  });
+};
diff --git a/yarn.lock b/yarn.lock
new file mode 100644
index 0000000..14989c1
--- /dev/null
+++ b/yarn.lock
@@ -0,0 +1,1900 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+"@ampproject/remapping@^2.2.0":
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4"
+  integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==
+  dependencies:
+    "@jridgewell/gen-mapping" "^0.3.5"
+    "@jridgewell/trace-mapping" "^0.3.24"
+
+"@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.2":
+  version "7.24.2"
+  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae"
+  integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==
+  dependencies:
+    "@babel/highlight" "^7.24.2"
+    picocolors "^1.0.0"
+
+"@babel/compat-data@^7.23.5":
+  version "7.24.4"
+  resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.4.tgz#6f102372e9094f25d908ca0d34fc74c74606059a"
+  integrity sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==
+
+"@babel/core@^7.23.5":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.5.tgz#15ab5b98e101972d171aeef92ac70d8d6718f06a"
+  integrity sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==
+  dependencies:
+    "@ampproject/remapping" "^2.2.0"
+    "@babel/code-frame" "^7.24.2"
+    "@babel/generator" "^7.24.5"
+    "@babel/helper-compilation-targets" "^7.23.6"
+    "@babel/helper-module-transforms" "^7.24.5"
+    "@babel/helpers" "^7.24.5"
+    "@babel/parser" "^7.24.5"
+    "@babel/template" "^7.24.0"
+    "@babel/traverse" "^7.24.5"
+    "@babel/types" "^7.24.5"
+    convert-source-map "^2.0.0"
+    debug "^4.1.0"
+    gensync "^1.0.0-beta.2"
+    json5 "^2.2.3"
+    semver "^6.3.1"
+
+"@babel/generator@^7.24.5":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.5.tgz#e5afc068f932f05616b66713e28d0f04e99daeb3"
+  integrity sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==
+  dependencies:
+    "@babel/types" "^7.24.5"
+    "@jridgewell/gen-mapping" "^0.3.5"
+    "@jridgewell/trace-mapping" "^0.3.25"
+    jsesc "^2.5.1"
+
+"@babel/helper-compilation-targets@^7.23.6":
+  version "7.23.6"
+  resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991"
+  integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==
+  dependencies:
+    "@babel/compat-data" "^7.23.5"
+    "@babel/helper-validator-option" "^7.23.5"
+    browserslist "^4.22.2"
+    lru-cache "^5.1.1"
+    semver "^6.3.1"
+
+"@babel/helper-environment-visitor@^7.22.20":
+  version "7.22.20"
+  resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
+  integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
+
+"@babel/helper-function-name@^7.23.0":
+  version "7.23.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759"
+  integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==
+  dependencies:
+    "@babel/template" "^7.22.15"
+    "@babel/types" "^7.23.0"
+
+"@babel/helper-hoist-variables@^7.22.5":
+  version "7.22.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
+  integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
+  dependencies:
+    "@babel/types" "^7.22.5"
+
+"@babel/helper-module-imports@^7.24.3":
+  version "7.24.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz#6ac476e6d168c7c23ff3ba3cf4f7841d46ac8128"
+  integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==
+  dependencies:
+    "@babel/types" "^7.24.0"
+
+"@babel/helper-module-transforms@^7.24.5":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz#ea6c5e33f7b262a0ae762fd5986355c45f54a545"
+  integrity sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==
+  dependencies:
+    "@babel/helper-environment-visitor" "^7.22.20"
+    "@babel/helper-module-imports" "^7.24.3"
+    "@babel/helper-simple-access" "^7.24.5"
+    "@babel/helper-split-export-declaration" "^7.24.5"
+    "@babel/helper-validator-identifier" "^7.24.5"
+
+"@babel/helper-plugin-utils@^7.24.0", "@babel/helper-plugin-utils@^7.24.5":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz#a924607dd254a65695e5bd209b98b902b3b2f11a"
+  integrity sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==
+
+"@babel/helper-simple-access@^7.24.5":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz#50da5b72f58c16b07fbd992810be6049478e85ba"
+  integrity sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==
+  dependencies:
+    "@babel/types" "^7.24.5"
+
+"@babel/helper-split-export-declaration@^7.24.5":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz#b9a67f06a46b0b339323617c8c6213b9055a78b6"
+  integrity sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==
+  dependencies:
+    "@babel/types" "^7.24.5"
+
+"@babel/helper-string-parser@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e"
+  integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==
+
+"@babel/helper-validator-identifier@^7.24.5":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz#918b1a7fa23056603506370089bd990d8720db62"
+  integrity sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==
+
+"@babel/helper-validator-option@^7.23.5":
+  version "7.23.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307"
+  integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==
+
+"@babel/helpers@^7.24.5":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.5.tgz#fedeb87eeafa62b621160402181ad8585a22a40a"
+  integrity sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==
+  dependencies:
+    "@babel/template" "^7.24.0"
+    "@babel/traverse" "^7.24.5"
+    "@babel/types" "^7.24.5"
+
+"@babel/highlight@^7.24.2":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.5.tgz#bc0613f98e1dd0720e99b2a9ee3760194a704b6e"
+  integrity sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==
+  dependencies:
+    "@babel/helper-validator-identifier" "^7.24.5"
+    chalk "^2.4.2"
+    js-tokens "^4.0.0"
+    picocolors "^1.0.0"
+
+"@babel/parser@^7.1.0", "@babel/parser@^7.20.7", "@babel/parser@^7.24.0", "@babel/parser@^7.24.5":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.5.tgz#4a4d5ab4315579e5398a82dcf636ca80c3392790"
+  integrity sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==
+
+"@babel/plugin-transform-react-jsx-self@^7.23.3":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.5.tgz#22cc7572947895c8e4cd034462e65d8ecf857756"
+  integrity sha512-RtCJoUO2oYrYwFPtR1/jkoBEcFuI1ae9a9IMxeyAVa3a1Ap4AnxmyIKG2b2FaJKqkidw/0cxRbWN+HOs6ZWd1w==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.24.5"
+
+"@babel/plugin-transform-react-jsx-source@^7.23.3":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.1.tgz#a2dedb12b09532846721b5df99e52ef8dc3351d0"
+  integrity sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.24.0"
+
+"@babel/runtime@^7.21.0", "@babel/runtime@^7.22.5", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.8.7":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.5.tgz#230946857c053a36ccc66e1dd03b17dd0c4ed02c"
+  integrity sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==
+  dependencies:
+    regenerator-runtime "^0.14.0"
+
+"@babel/template@^7.22.15", "@babel/template@^7.24.0":
+  version "7.24.0"
+  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.0.tgz#c6a524aa93a4a05d66aaf31654258fae69d87d50"
+  integrity sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==
+  dependencies:
+    "@babel/code-frame" "^7.23.5"
+    "@babel/parser" "^7.24.0"
+    "@babel/types" "^7.24.0"
+
+"@babel/traverse@^7.24.5":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.5.tgz#972aa0bc45f16983bf64aa1f877b2dd0eea7e6f8"
+  integrity sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==
+  dependencies:
+    "@babel/code-frame" "^7.24.2"
+    "@babel/generator" "^7.24.5"
+    "@babel/helper-environment-visitor" "^7.22.20"
+    "@babel/helper-function-name" "^7.23.0"
+    "@babel/helper-hoist-variables" "^7.22.5"
+    "@babel/helper-split-export-declaration" "^7.24.5"
+    "@babel/parser" "^7.24.5"
+    "@babel/types" "^7.24.5"
+    debug "^4.3.1"
+    globals "^11.1.0"
+
+"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.24.0", "@babel/types@^7.24.5":
+  version "7.24.5"
+  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.5.tgz#7661930afc638a5383eb0c4aee59b74f38db84d7"
+  integrity sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==
+  dependencies:
+    "@babel/helper-string-parser" "^7.24.1"
+    "@babel/helper-validator-identifier" "^7.24.5"
+    to-fast-properties "^2.0.0"
+
+"@esbuild/aix-ppc64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537"
+  integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==
+
+"@esbuild/android-arm64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9"
+  integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==
+
+"@esbuild/android-arm@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995"
+  integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==
+
+"@esbuild/android-x64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98"
+  integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==
+
+"@esbuild/darwin-arm64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb"
+  integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==
+
+"@esbuild/darwin-x64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0"
+  integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==
+
+"@esbuild/freebsd-arm64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911"
+  integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==
+
+"@esbuild/freebsd-x64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c"
+  integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==
+
+"@esbuild/linux-arm64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5"
+  integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==
+
+"@esbuild/linux-arm@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c"
+  integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==
+
+"@esbuild/linux-ia32@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa"
+  integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==
+
+"@esbuild/linux-loong64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5"
+  integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==
+
+"@esbuild/linux-mips64el@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa"
+  integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==
+
+"@esbuild/linux-ppc64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20"
+  integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==
+
+"@esbuild/linux-riscv64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300"
+  integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==
+
+"@esbuild/linux-s390x@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685"
+  integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==
+
+"@esbuild/linux-x64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff"
+  integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==
+
+"@esbuild/netbsd-x64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6"
+  integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==
+
+"@esbuild/openbsd-x64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf"
+  integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==
+
+"@esbuild/sunos-x64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f"
+  integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==
+
+"@esbuild/win32-arm64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90"
+  integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==
+
+"@esbuild/win32-ia32@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23"
+  integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==
+
+"@esbuild/win32-x64@0.20.2":
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc"
+  integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==
+
+"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0":
+  version "4.4.0"
+  resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
+  integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
+  dependencies:
+    eslint-visitor-keys "^3.3.0"
+
+"@eslint-community/regexpp@^4.10.0", "@eslint-community/regexpp@^4.6.1":
+  version "4.10.0"
+  resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63"
+  integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==
+
+"@eslint/eslintrc@^2.1.4":
+  version "2.1.4"
+  resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad"
+  integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==
+  dependencies:
+    ajv "^6.12.4"
+    debug "^4.3.2"
+    espree "^9.6.0"
+    globals "^13.19.0"
+    ignore "^5.2.0"
+    import-fresh "^3.2.1"
+    js-yaml "^4.1.0"
+    minimatch "^3.1.2"
+    strip-json-comments "^3.1.1"
+
+"@eslint/js@8.57.0":
+  version "8.57.0"
+  resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f"
+  integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==
+
+"@humanwhocodes/config-array@^0.11.14":
+  version "0.11.14"
+  resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b"
+  integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==
+  dependencies:
+    "@humanwhocodes/object-schema" "^2.0.2"
+    debug "^4.3.1"
+    minimatch "^3.0.5"
+
+"@humanwhocodes/module-importer@^1.0.1":
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
+  integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
+
+"@humanwhocodes/object-schema@^2.0.2":
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3"
+  integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==
+
+"@jridgewell/gen-mapping@^0.3.5":
+  version "0.3.5"
+  resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36"
+  integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==
+  dependencies:
+    "@jridgewell/set-array" "^1.2.1"
+    "@jridgewell/sourcemap-codec" "^1.4.10"
+    "@jridgewell/trace-mapping" "^0.3.24"
+
+"@jridgewell/resolve-uri@^3.1.0":
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6"
+  integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==
+
+"@jridgewell/set-array@^1.2.1":
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280"
+  integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==
+
+"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14":
+  version "1.4.15"
+  resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
+  integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
+
+"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
+  version "0.3.25"
+  resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0"
+  integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==
+  dependencies:
+    "@jridgewell/resolve-uri" "^3.1.0"
+    "@jridgewell/sourcemap-codec" "^1.4.14"
+
+"@nodelib/fs.scandir@2.1.5":
+  version "2.1.5"
+  resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
+  integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
+  dependencies:
+    "@nodelib/fs.stat" "2.0.5"
+    run-parallel "^1.1.9"
+
+"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
+  version "2.0.5"
+  resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
+  integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
+
+"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
+  version "1.2.8"
+  resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
+  integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
+  dependencies:
+    "@nodelib/fs.scandir" "2.1.5"
+    fastq "^1.6.0"
+
+"@popperjs/core@^2.11.6":
+  version "2.11.8"
+  resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f"
+  integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==
+
+"@react-aria/ssr@^3.5.0":
+  version "3.9.3"
+  resolved "https://registry.yarnpkg.com/@react-aria/ssr/-/ssr-3.9.3.tgz#9e7d4e019965aaf86cec3da2411a392be49ac2b3"
+  integrity sha512-5bUZ93dmvHFcmfUcEN7qzYe8yQQ8JY+nHN6m9/iSDCQ/QmCiE0kWXYwhurjw5ch6I8WokQzx66xKIMHBAa4NNA==
+  dependencies:
+    "@swc/helpers" "^0.5.0"
+
+"@remix-run/router@1.16.0":
+  version "1.16.0"
+  resolved "https://registry.yarnpkg.com/@remix-run/router/-/router-1.16.0.tgz#0e10181e5fec1434eb071a9bc4bdaac843f16dcc"
+  integrity sha512-Quz1KOffeEf/zwkCBM3kBtH4ZoZ+pT3xIXBG4PPW/XFtDP7EGhtTiC2+gpL9GnR7+Qdet5Oa6cYSvwKYg6kN9Q==
+
+"@restart/hooks@^0.4.9":
+  version "0.4.16"
+  resolved "https://registry.yarnpkg.com/@restart/hooks/-/hooks-0.4.16.tgz#95ae8ac1cc7e2bd4fed5e39800ff85604c6d59fb"
+  integrity sha512-f7aCv7c+nU/3mF7NWLtVVr0Ra80RqsO89hO72r+Y/nvQr5+q0UFGkocElTH6MJApvReVh6JHUFYn2cw1WdHF3w==
+  dependencies:
+    dequal "^2.0.3"
+
+"@restart/ui@^1.6.8":
+  version "1.6.8"
+  resolved "https://registry.yarnpkg.com/@restart/ui/-/ui-1.6.8.tgz#61b73503d4690e2f0f58992d4d6ae1e89c276791"
+  integrity sha512-6ndCv3oZ7r9vuP1Ok9KH55TM1/UkdBnP/fSraW0DFDMbPMzWKhVKeFAIEUCRCSdzayjZDcFYK6xbMlipN9dmMA==
+  dependencies:
+    "@babel/runtime" "^7.21.0"
+    "@popperjs/core" "^2.11.6"
+    "@react-aria/ssr" "^3.5.0"
+    "@restart/hooks" "^0.4.9"
+    "@types/warning" "^3.0.0"
+    dequal "^2.0.3"
+    dom-helpers "^5.2.0"
+    uncontrollable "^8.0.1"
+    warning "^4.0.3"
+
+"@rollup/rollup-android-arm-eabi@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz#1a32112822660ee104c5dd3a7c595e26100d4c2d"
+  integrity sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==
+
+"@rollup/rollup-android-arm64@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz#5aeef206d65ff4db423f3a93f71af91b28662c5b"
+  integrity sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==
+
+"@rollup/rollup-darwin-arm64@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz#6b66aaf003c70454c292cd5f0236ebdc6ffbdf1a"
+  integrity sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==
+
+"@rollup/rollup-darwin-x64@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz#f64fc51ed12b19f883131ccbcea59fc68cbd6c0b"
+  integrity sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==
+
+"@rollup/rollup-linux-arm-gnueabihf@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz#1a7641111be67c10111f7122d1e375d1226cbf14"
+  integrity sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==
+
+"@rollup/rollup-linux-arm-musleabihf@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz#c93fd632923e0fee25aacd2ae414288d0b7455bb"
+  integrity sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==
+
+"@rollup/rollup-linux-arm64-gnu@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz#fa531425dd21d058a630947527b4612d9d0b4a4a"
+  integrity sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==
+
+"@rollup/rollup-linux-arm64-musl@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz#8acc16f095ceea5854caf7b07e73f7d1802ac5af"
+  integrity sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==
+
+"@rollup/rollup-linux-powerpc64le-gnu@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz#94e69a8499b5cf368911b83a44bb230782aeb571"
+  integrity sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==
+
+"@rollup/rollup-linux-riscv64-gnu@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz#7ef1c781c7e59e85a6ce261cc95d7f1e0b56db0f"
+  integrity sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==
+
+"@rollup/rollup-linux-s390x-gnu@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz#f15775841c3232fca9b78cd25a7a0512c694b354"
+  integrity sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==
+
+"@rollup/rollup-linux-x64-gnu@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz#b521d271798d037ad70c9f85dd97d25f8a52e811"
+  integrity sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==
+
+"@rollup/rollup-linux-x64-musl@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz#9254019cc4baac35800991315d133cc9fd1bf385"
+  integrity sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==
+
+"@rollup/rollup-win32-arm64-msvc@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz#27f65a89f6f52ee9426ec11e3571038e4671790f"
+  integrity sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==
+
+"@rollup/rollup-win32-ia32-msvc@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz#a2fbf8246ed0bb014f078ca34ae6b377a90cb411"
+  integrity sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==
+
+"@rollup/rollup-win32-x64-msvc@4.17.2":
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz#5a2d08b81e8064b34242d5cc9973ef8dd1e60503"
+  integrity sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==
+
+"@swc/helpers@^0.5.0":
+  version "0.5.11"
+  resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.11.tgz#5bab8c660a6e23c13b2d23fcd1ee44a2db1b0cb7"
+  integrity sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==
+  dependencies:
+    tslib "^2.4.0"
+
+"@types/babel__core@^7.20.5":
+  version "7.20.5"
+  resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017"
+  integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==
+  dependencies:
+    "@babel/parser" "^7.20.7"
+    "@babel/types" "^7.20.7"
+    "@types/babel__generator" "*"
+    "@types/babel__template" "*"
+    "@types/babel__traverse" "*"
+
+"@types/babel__generator@*":
+  version "7.6.8"
+  resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab"
+  integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==
+  dependencies:
+    "@babel/types" "^7.0.0"
+
+"@types/babel__template@*":
+  version "7.4.4"
+  resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f"
+  integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==
+  dependencies:
+    "@babel/parser" "^7.1.0"
+    "@babel/types" "^7.0.0"
+
+"@types/babel__traverse@*":
+  version "7.20.5"
+  resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.5.tgz#7b7502be0aa80cc4ef22978846b983edaafcd4dd"
+  integrity sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==
+  dependencies:
+    "@babel/types" "^7.20.7"
+
+"@types/estree@1.0.5":
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4"
+  integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==
+
+"@types/json-schema@^7.0.15":
+  version "7.0.15"
+  resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
+  integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
+
+"@types/node@^20.12.10":
+  version "20.12.10"
+  resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.10.tgz#8f0c3f12b0f075eee1fe20c1afb417e9765bef76"
+  integrity sha512-Eem5pH9pmWBHoGAT8Dr5fdc5rYA+4NAovdM4EktRPVAAiJhmWWfQrA0cFhAbOsQdSfIHjAud6YdkbL69+zSKjw==
+  dependencies:
+    undici-types "~5.26.4"
+
+"@types/prop-types@*":
+  version "15.7.12"
+  resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.12.tgz#12bb1e2be27293c1406acb6af1c3f3a1481d98c6"
+  integrity sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==
+
+"@types/react-dom@^18.2.22":
+  version "18.3.0"
+  resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.3.0.tgz#0cbc818755d87066ab6ca74fbedb2547d74a82b0"
+  integrity sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react-transition-group@^4.4.6":
+  version "4.4.10"
+  resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.10.tgz#6ee71127bdab1f18f11ad8fb3322c6da27c327ac"
+  integrity sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==
+  dependencies:
+    "@types/react" "*"
+
+"@types/react@*", "@types/react@>=16.9.11", "@types/react@^18.2.66":
+  version "18.3.1"
+  resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.1.tgz#fed43985caa834a2084d002e4771e15dfcbdbe8e"
+  integrity sha512-V0kuGBX3+prX+DQ/7r2qsv1NsdfnCLnTgnRJ1pYnxykBhGMz+qj+box5lq7XsO5mtZsBqpjwwTu/7wszPfMBcw==
+  dependencies:
+    "@types/prop-types" "*"
+    csstype "^3.0.2"
+
+"@types/semver@^7.5.8":
+  version "7.5.8"
+  resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.8.tgz#8268a8c57a3e4abd25c165ecd36237db7948a55e"
+  integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==
+
+"@types/warning@^3.0.0":
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/@types/warning/-/warning-3.0.3.tgz#d1884c8cc4a426d1ac117ca2611bf333834c6798"
+  integrity sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q==
+
+"@typescript-eslint/eslint-plugin@^7.2.0":
+  version "7.8.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.8.0.tgz#c78e309fe967cb4de05b85cdc876fb95f8e01b6f"
+  integrity sha512-gFTT+ezJmkwutUPmB0skOj3GZJtlEGnlssems4AjkVweUPGj7jRwwqg0Hhg7++kPGJqKtTYx+R05Ftww372aIg==
+  dependencies:
+    "@eslint-community/regexpp" "^4.10.0"
+    "@typescript-eslint/scope-manager" "7.8.0"
+    "@typescript-eslint/type-utils" "7.8.0"
+    "@typescript-eslint/utils" "7.8.0"
+    "@typescript-eslint/visitor-keys" "7.8.0"
+    debug "^4.3.4"
+    graphemer "^1.4.0"
+    ignore "^5.3.1"
+    natural-compare "^1.4.0"
+    semver "^7.6.0"
+    ts-api-utils "^1.3.0"
+
+"@typescript-eslint/parser@^7.2.0":
+  version "7.8.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-7.8.0.tgz#1e1db30c8ab832caffee5f37e677dbcb9357ddc8"
+  integrity sha512-KgKQly1pv0l4ltcftP59uQZCi4HUYswCLbTqVZEJu7uLX8CTLyswqMLqLN+2QFz4jCptqWVV4SB7vdxcH2+0kQ==
+  dependencies:
+    "@typescript-eslint/scope-manager" "7.8.0"
+    "@typescript-eslint/types" "7.8.0"
+    "@typescript-eslint/typescript-estree" "7.8.0"
+    "@typescript-eslint/visitor-keys" "7.8.0"
+    debug "^4.3.4"
+
+"@typescript-eslint/scope-manager@7.8.0":
+  version "7.8.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-7.8.0.tgz#bb19096d11ec6b87fb6640d921df19b813e02047"
+  integrity sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==
+  dependencies:
+    "@typescript-eslint/types" "7.8.0"
+    "@typescript-eslint/visitor-keys" "7.8.0"
+
+"@typescript-eslint/type-utils@7.8.0":
+  version "7.8.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-7.8.0.tgz#9de166f182a6e4d1c5da76e94880e91831e3e26f"
+  integrity sha512-H70R3AefQDQpz9mGv13Uhi121FNMh+WEaRqcXTX09YEDky21km4dV1ZXJIp8QjXc4ZaVkXVdohvWDzbnbHDS+A==
+  dependencies:
+    "@typescript-eslint/typescript-estree" "7.8.0"
+    "@typescript-eslint/utils" "7.8.0"
+    debug "^4.3.4"
+    ts-api-utils "^1.3.0"
+
+"@typescript-eslint/types@7.8.0":
+  version "7.8.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-7.8.0.tgz#1fd2577b3ad883b769546e2d1ef379f929a7091d"
+  integrity sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==
+
+"@typescript-eslint/typescript-estree@7.8.0":
+  version "7.8.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-7.8.0.tgz#b028a9226860b66e623c1ee55cc2464b95d2987c"
+  integrity sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==
+  dependencies:
+    "@typescript-eslint/types" "7.8.0"
+    "@typescript-eslint/visitor-keys" "7.8.0"
+    debug "^4.3.4"
+    globby "^11.1.0"
+    is-glob "^4.0.3"
+    minimatch "^9.0.4"
+    semver "^7.6.0"
+    ts-api-utils "^1.3.0"
+
+"@typescript-eslint/utils@7.8.0":
+  version "7.8.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-7.8.0.tgz#57a79f9c0c0740ead2f622e444cfaeeb9fd047cd"
+  integrity sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==
+  dependencies:
+    "@eslint-community/eslint-utils" "^4.4.0"
+    "@types/json-schema" "^7.0.15"
+    "@types/semver" "^7.5.8"
+    "@typescript-eslint/scope-manager" "7.8.0"
+    "@typescript-eslint/types" "7.8.0"
+    "@typescript-eslint/typescript-estree" "7.8.0"
+    semver "^7.6.0"
+
+"@typescript-eslint/visitor-keys@7.8.0":
+  version "7.8.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-7.8.0.tgz#7285aab991da8bee411a42edbd5db760d22fdd91"
+  integrity sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==
+  dependencies:
+    "@typescript-eslint/types" "7.8.0"
+    eslint-visitor-keys "^3.4.3"
+
+"@ungap/structured-clone@^1.2.0":
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
+  integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
+
+"@vitejs/plugin-react@^4.2.1":
+  version "4.2.1"
+  resolved "https://registry.yarnpkg.com/@vitejs/plugin-react/-/plugin-react-4.2.1.tgz#744d8e4fcb120fc3dbaa471dadd3483f5a304bb9"
+  integrity sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==
+  dependencies:
+    "@babel/core" "^7.23.5"
+    "@babel/plugin-transform-react-jsx-self" "^7.23.3"
+    "@babel/plugin-transform-react-jsx-source" "^7.23.3"
+    "@types/babel__core" "^7.20.5"
+    react-refresh "^0.14.0"
+
+acorn-jsx@^5.3.2:
+  version "5.3.2"
+  resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
+  integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
+
+acorn@^8.9.0:
+  version "8.11.3"
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a"
+  integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==
+
+ajv@^6.12.4:
+  version "6.12.6"
+  resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
+  integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
+  dependencies:
+    fast-deep-equal "^3.1.1"
+    fast-json-stable-stringify "^2.0.0"
+    json-schema-traverse "^0.4.1"
+    uri-js "^4.2.2"
+
+ansi-regex@^5.0.1:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
+  integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
+
+ansi-styles@^3.2.1:
+  version "3.2.1"
+  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
+  integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
+  dependencies:
+    color-convert "^1.9.0"
+
+ansi-styles@^4.1.0:
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
+  integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
+  dependencies:
+    color-convert "^2.0.1"
+
+argparse@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
+  integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
+
+array-union@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
+  integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
+
+balanced-match@^1.0.0:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
+  integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
+
+bootstrap@^5.3.3:
+  version "5.3.3"
+  resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.3.3.tgz#de35e1a765c897ac940021900fcbb831602bac38"
+  integrity sha512-8HLCdWgyoMguSO9o+aH+iuZ+aht+mzW0u3HIMzVu7Srrpv7EBBxTnrFlSCskwdY1+EOFQSm7uMJhNQHkdPcmjg==
+
+brace-expansion@^1.1.7:
+  version "1.1.11"
+  resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
+  integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
+  dependencies:
+    balanced-match "^1.0.0"
+    concat-map "0.0.1"
+
+brace-expansion@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
+  integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
+  dependencies:
+    balanced-match "^1.0.0"
+
+braces@^3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
+  integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
+  dependencies:
+    fill-range "^7.0.1"
+
+browserslist@^4.22.2:
+  version "4.23.0"
+  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab"
+  integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==
+  dependencies:
+    caniuse-lite "^1.0.30001587"
+    electron-to-chromium "^1.4.668"
+    node-releases "^2.0.14"
+    update-browserslist-db "^1.0.13"
+
+callsites@^3.0.0:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
+  integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
+
+caniuse-lite@^1.0.30001587:
+  version "1.0.30001616"
+  resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001616.tgz#4342712750d35f71ebba9fcac65e2cf8870013c3"
+  integrity sha512-RHVYKov7IcdNjVHJFNY/78RdG4oGVjbayxv8u5IO74Wv7Hlq4PnJE6mo/OjFijjVFNy5ijnCt6H3IIo4t+wfEw==
+
+chalk@^2.4.2:
+  version "2.4.2"
+  resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
+  integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
+  dependencies:
+    ansi-styles "^3.2.1"
+    escape-string-regexp "^1.0.5"
+    supports-color "^5.3.0"
+
+chalk@^4.0.0:
+  version "4.1.2"
+  resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
+  integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
+  dependencies:
+    ansi-styles "^4.1.0"
+    supports-color "^7.1.0"
+
+classnames@^2.3.2:
+  version "2.5.1"
+  resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.5.1.tgz#ba774c614be0f016da105c858e7159eae8e7687b"
+  integrity sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==
+
+color-convert@^1.9.0:
+  version "1.9.3"
+  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
+  integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
+  dependencies:
+    color-name "1.1.3"
+
+color-convert@^2.0.1:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
+  integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
+  dependencies:
+    color-name "~1.1.4"
+
+color-name@1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
+  integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
+
+color-name@~1.1.4:
+  version "1.1.4"
+  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
+  integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
+
+concat-map@0.0.1:
+  version "0.0.1"
+  resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
+  integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
+
+convert-source-map@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
+  integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
+
+cross-spawn@^7.0.2:
+  version "7.0.3"
+  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
+  integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
+  dependencies:
+    path-key "^3.1.0"
+    shebang-command "^2.0.0"
+    which "^2.0.1"
+
+csstype@^3.0.2:
+  version "3.1.3"
+  resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81"
+  integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
+
+debug@^4.1.0, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4:
+  version "4.3.4"
+  resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
+  integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
+  dependencies:
+    ms "2.1.2"
+
+deep-is@^0.1.3:
+  version "0.1.4"
+  resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
+  integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
+
+dequal@^2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be"
+  integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==
+
+dir-glob@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
+  integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
+  dependencies:
+    path-type "^4.0.0"
+
+doctrine@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
+  integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
+  dependencies:
+    esutils "^2.0.2"
+
+dom-helpers@^5.0.1, dom-helpers@^5.2.0, dom-helpers@^5.2.1:
+  version "5.2.1"
+  resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902"
+  integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==
+  dependencies:
+    "@babel/runtime" "^7.8.7"
+    csstype "^3.0.2"
+
+electron-to-chromium@^1.4.668:
+  version "1.4.757"
+  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.757.tgz#45f7c9341b538f8c4b9ca8af9692e0ed1a776a44"
+  integrity sha512-jftDaCknYSSt/+KKeXzH3LX5E2CvRLm75P3Hj+J/dv3CL0qUYcOt13d5FN1NiL5IJbbhzHrb3BomeG2tkSlZmw==
+
+esbuild@^0.20.1:
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1"
+  integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==
+  optionalDependencies:
+    "@esbuild/aix-ppc64" "0.20.2"
+    "@esbuild/android-arm" "0.20.2"
+    "@esbuild/android-arm64" "0.20.2"
+    "@esbuild/android-x64" "0.20.2"
+    "@esbuild/darwin-arm64" "0.20.2"
+    "@esbuild/darwin-x64" "0.20.2"
+    "@esbuild/freebsd-arm64" "0.20.2"
+    "@esbuild/freebsd-x64" "0.20.2"
+    "@esbuild/linux-arm" "0.20.2"
+    "@esbuild/linux-arm64" "0.20.2"
+    "@esbuild/linux-ia32" "0.20.2"
+    "@esbuild/linux-loong64" "0.20.2"
+    "@esbuild/linux-mips64el" "0.20.2"
+    "@esbuild/linux-ppc64" "0.20.2"
+    "@esbuild/linux-riscv64" "0.20.2"
+    "@esbuild/linux-s390x" "0.20.2"
+    "@esbuild/linux-x64" "0.20.2"
+    "@esbuild/netbsd-x64" "0.20.2"
+    "@esbuild/openbsd-x64" "0.20.2"
+    "@esbuild/sunos-x64" "0.20.2"
+    "@esbuild/win32-arm64" "0.20.2"
+    "@esbuild/win32-ia32" "0.20.2"
+    "@esbuild/win32-x64" "0.20.2"
+
+escalade@^3.1.2:
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27"
+  integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==
+
+escape-string-regexp@^1.0.5:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
+  integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
+
+escape-string-regexp@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
+  integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
+
+eslint-plugin-react-hooks@^4.6.0:
+  version "4.6.2"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz#c829eb06c0e6f484b3fbb85a97e57784f328c596"
+  integrity sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==
+
+eslint-plugin-react-refresh@^0.4.6:
+  version "0.4.6"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.6.tgz#e8e8accab681861baed00c5c12da70267db0936f"
+  integrity sha512-NjGXdm7zgcKRkKMua34qVO9doI7VOxZ6ancSvBELJSSoX97jyndXcSoa8XBh69JoB31dNz3EEzlMcizZl7LaMA==
+
+eslint-scope@^7.2.2:
+  version "7.2.2"
+  resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f"
+  integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==
+  dependencies:
+    esrecurse "^4.3.0"
+    estraverse "^5.2.0"
+
+eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3:
+  version "3.4.3"
+  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
+  integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
+
+eslint@^8.57.0:
+  version "8.57.0"
+  resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668"
+  integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==
+  dependencies:
+    "@eslint-community/eslint-utils" "^4.2.0"
+    "@eslint-community/regexpp" "^4.6.1"
+    "@eslint/eslintrc" "^2.1.4"
+    "@eslint/js" "8.57.0"
+    "@humanwhocodes/config-array" "^0.11.14"
+    "@humanwhocodes/module-importer" "^1.0.1"
+    "@nodelib/fs.walk" "^1.2.8"
+    "@ungap/structured-clone" "^1.2.0"
+    ajv "^6.12.4"
+    chalk "^4.0.0"
+    cross-spawn "^7.0.2"
+    debug "^4.3.2"
+    doctrine "^3.0.0"
+    escape-string-regexp "^4.0.0"
+    eslint-scope "^7.2.2"
+    eslint-visitor-keys "^3.4.3"
+    espree "^9.6.1"
+    esquery "^1.4.2"
+    esutils "^2.0.2"
+    fast-deep-equal "^3.1.3"
+    file-entry-cache "^6.0.1"
+    find-up "^5.0.0"
+    glob-parent "^6.0.2"
+    globals "^13.19.0"
+    graphemer "^1.4.0"
+    ignore "^5.2.0"
+    imurmurhash "^0.1.4"
+    is-glob "^4.0.0"
+    is-path-inside "^3.0.3"
+    js-yaml "^4.1.0"
+    json-stable-stringify-without-jsonify "^1.0.1"
+    levn "^0.4.1"
+    lodash.merge "^4.6.2"
+    minimatch "^3.1.2"
+    natural-compare "^1.4.0"
+    optionator "^0.9.3"
+    strip-ansi "^6.0.1"
+    text-table "^0.2.0"
+
+espree@^9.6.0, espree@^9.6.1:
+  version "9.6.1"
+  resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f"
+  integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==
+  dependencies:
+    acorn "^8.9.0"
+    acorn-jsx "^5.3.2"
+    eslint-visitor-keys "^3.4.1"
+
+esquery@^1.4.2:
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b"
+  integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==
+  dependencies:
+    estraverse "^5.1.0"
+
+esrecurse@^4.3.0:
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
+  integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
+  dependencies:
+    estraverse "^5.2.0"
+
+estraverse@^5.1.0, estraverse@^5.2.0:
+  version "5.3.0"
+  resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
+  integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
+
+esutils@^2.0.2:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
+  integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
+
+fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
+  version "3.1.3"
+  resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
+  integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
+
+fast-glob@^3.2.9:
+  version "3.3.2"
+  resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129"
+  integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
+  dependencies:
+    "@nodelib/fs.stat" "^2.0.2"
+    "@nodelib/fs.walk" "^1.2.3"
+    glob-parent "^5.1.2"
+    merge2 "^1.3.0"
+    micromatch "^4.0.4"
+
+fast-json-stable-stringify@^2.0.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
+  integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
+
+fast-levenshtein@^2.0.6:
+  version "2.0.6"
+  resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
+  integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
+
+fastq@^1.6.0:
+  version "1.17.1"
+  resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47"
+  integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==
+  dependencies:
+    reusify "^1.0.4"
+
+file-entry-cache@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
+  integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
+  dependencies:
+    flat-cache "^3.0.4"
+
+fill-range@^7.0.1:
+  version "7.0.1"
+  resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
+  integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
+  dependencies:
+    to-regex-range "^5.0.1"
+
+find-up@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
+  integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
+  dependencies:
+    locate-path "^6.0.0"
+    path-exists "^4.0.0"
+
+flat-cache@^3.0.4:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee"
+  integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==
+  dependencies:
+    flatted "^3.2.9"
+    keyv "^4.5.3"
+    rimraf "^3.0.2"
+
+flatted@^3.2.9:
+  version "3.3.1"
+  resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a"
+  integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==
+
+fs.realpath@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
+  integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
+
+fsevents@~2.3.2, fsevents@~2.3.3:
+  version "2.3.3"
+  resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
+  integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
+
+gensync@^1.0.0-beta.2:
+  version "1.0.0-beta.2"
+  resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
+  integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
+
+glob-parent@^5.1.2:
+  version "5.1.2"
+  resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
+  integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
+  dependencies:
+    is-glob "^4.0.1"
+
+glob-parent@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
+  integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
+  dependencies:
+    is-glob "^4.0.3"
+
+glob@^7.1.3:
+  version "7.2.3"
+  resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
+  integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
+  dependencies:
+    fs.realpath "^1.0.0"
+    inflight "^1.0.4"
+    inherits "2"
+    minimatch "^3.1.1"
+    once "^1.3.0"
+    path-is-absolute "^1.0.0"
+
+globals@^11.1.0:
+  version "11.12.0"
+  resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
+  integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
+
+globals@^13.19.0:
+  version "13.24.0"
+  resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171"
+  integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==
+  dependencies:
+    type-fest "^0.20.2"
+
+globby@^11.1.0:
+  version "11.1.0"
+  resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
+  integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
+  dependencies:
+    array-union "^2.1.0"
+    dir-glob "^3.0.1"
+    fast-glob "^3.2.9"
+    ignore "^5.2.0"
+    merge2 "^1.4.1"
+    slash "^3.0.0"
+
+graphemer@^1.4.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
+  integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
+
+has-flag@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
+  integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
+
+has-flag@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
+  integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
+
+ignore@^5.2.0, ignore@^5.3.1:
+  version "5.3.1"
+  resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef"
+  integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
+
+import-fresh@^3.2.1:
+  version "3.3.0"
+  resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
+  integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
+  dependencies:
+    parent-module "^1.0.0"
+    resolve-from "^4.0.0"
+
+imurmurhash@^0.1.4:
+  version "0.1.4"
+  resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
+  integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
+
+inflight@^1.0.4:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
+  integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
+  dependencies:
+    once "^1.3.0"
+    wrappy "1"
+
+inherits@2:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
+  integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
+
+invariant@^2.2.4:
+  version "2.2.4"
+  resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
+  integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
+  dependencies:
+    loose-envify "^1.0.0"
+
+is-extglob@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
+  integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
+
+is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
+  version "4.0.3"
+  resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
+  integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
+  dependencies:
+    is-extglob "^2.1.1"
+
+is-number@^7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
+  integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
+
+is-path-inside@^3.0.3:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
+  integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
+
+isexe@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
+  integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
+
+"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
+  integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
+
+js-yaml@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
+  integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
+  dependencies:
+    argparse "^2.0.1"
+
+jsesc@^2.5.1:
+  version "2.5.2"
+  resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
+  integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
+
+json-buffer@3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13"
+  integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==
+
+json-schema-traverse@^0.4.1:
+  version "0.4.1"
+  resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
+  integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
+
+json-stable-stringify-without-jsonify@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
+  integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
+
+json5@^2.2.3:
+  version "2.2.3"
+  resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
+  integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
+
+keyv@^4.5.3:
+  version "4.5.4"
+  resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93"
+  integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==
+  dependencies:
+    json-buffer "3.0.1"
+
+levn@^0.4.1:
+  version "0.4.1"
+  resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
+  integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
+  dependencies:
+    prelude-ls "^1.2.1"
+    type-check "~0.4.0"
+
+locate-path@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
+  integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
+  dependencies:
+    p-locate "^5.0.0"
+
+lodash.merge@^4.6.2:
+  version "4.6.2"
+  resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
+  integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
+
+loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
+  integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
+  dependencies:
+    js-tokens "^3.0.0 || ^4.0.0"
+
+lru-cache@^5.1.1:
+  version "5.1.1"
+  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
+  integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
+  dependencies:
+    yallist "^3.0.2"
+
+lru-cache@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
+  integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
+  dependencies:
+    yallist "^4.0.0"
+
+merge2@^1.3.0, merge2@^1.4.1:
+  version "1.4.1"
+  resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
+  integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
+
+micromatch@^4.0.4:
+  version "4.0.5"
+  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
+  integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
+  dependencies:
+    braces "^3.0.2"
+    picomatch "^2.3.1"
+
+minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
+  integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
+  dependencies:
+    brace-expansion "^1.1.7"
+
+minimatch@^9.0.4:
+  version "9.0.4"
+  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.4.tgz#8e49c731d1749cbec05050ee5145147b32496a51"
+  integrity sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==
+  dependencies:
+    brace-expansion "^2.0.1"
+
+ms@2.1.2:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
+  integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+
+nanoid@^3.3.7:
+  version "3.3.7"
+  resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8"
+  integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
+
+natural-compare@^1.4.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
+  integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
+
+node-releases@^2.0.14:
+  version "2.0.14"
+  resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b"
+  integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==
+
+object-assign@^4.1.1:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
+  integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
+
+once@^1.3.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
+  integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
+  dependencies:
+    wrappy "1"
+
+optionator@^0.9.3:
+  version "0.9.4"
+  resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734"
+  integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==
+  dependencies:
+    deep-is "^0.1.3"
+    fast-levenshtein "^2.0.6"
+    levn "^0.4.1"
+    prelude-ls "^1.2.1"
+    type-check "^0.4.0"
+    word-wrap "^1.2.5"
+
+p-limit@^3.0.2:
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
+  integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
+  dependencies:
+    yocto-queue "^0.1.0"
+
+p-locate@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
+  integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
+  dependencies:
+    p-limit "^3.0.2"
+
+parent-module@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
+  integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
+  dependencies:
+    callsites "^3.0.0"
+
+path-exists@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
+  integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
+
+path-is-absolute@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
+  integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
+
+path-key@^3.1.0:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
+  integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
+
+path-type@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
+  integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
+
+picocolors@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
+  integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
+
+picomatch@^2.3.1:
+  version "2.3.1"
+  resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
+  integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
+
+postcss@^8.4.38:
+  version "8.4.38"
+  resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e"
+  integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==
+  dependencies:
+    nanoid "^3.3.7"
+    picocolors "^1.0.0"
+    source-map-js "^1.2.0"
+
+prelude-ls@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
+  integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
+
+prettier@^3.2.5:
+  version "3.2.5"
+  resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.2.5.tgz#e52bc3090586e824964a8813b09aba6233b28368"
+  integrity sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==
+
+prop-types-extra@^1.1.0:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/prop-types-extra/-/prop-types-extra-1.1.1.tgz#58c3b74cbfbb95d304625975aa2f0848329a010b"
+  integrity sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==
+  dependencies:
+    react-is "^16.3.2"
+    warning "^4.0.0"
+
+prop-types@^15.6.2, prop-types@^15.8.1:
+  version "15.8.1"
+  resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
+  integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
+  dependencies:
+    loose-envify "^1.4.0"
+    object-assign "^4.1.1"
+    react-is "^16.13.1"
+
+punycode@^2.1.0:
+  version "2.3.1"
+  resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5"
+  integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==
+
+queue-microtask@^1.2.2:
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
+  integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
+
+react-bootstrap@^2.10.2:
+  version "2.10.2"
+  resolved "https://registry.yarnpkg.com/react-bootstrap/-/react-bootstrap-2.10.2.tgz#3b609eb0170e31b3d9ace297d3a016c202a42642"
+  integrity sha512-UvB7mRqQjivdZNxJNEA2yOQRB7L9N43nBnKc33K47+cH90/ujmnMwatTCwQLu83gLhrzAl8fsa6Lqig/KLghaA==
+  dependencies:
+    "@babel/runtime" "^7.22.5"
+    "@restart/hooks" "^0.4.9"
+    "@restart/ui" "^1.6.8"
+    "@types/react-transition-group" "^4.4.6"
+    classnames "^2.3.2"
+    dom-helpers "^5.2.1"
+    invariant "^2.2.4"
+    prop-types "^15.8.1"
+    prop-types-extra "^1.1.0"
+    react-transition-group "^4.4.5"
+    uncontrollable "^7.2.1"
+    warning "^4.0.3"
+
+react-dom@^18.2.0:
+  version "18.3.1"
+  resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.3.1.tgz#c2265d79511b57d479b3dd3fdfa51536494c5cb4"
+  integrity sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==
+  dependencies:
+    loose-envify "^1.1.0"
+    scheduler "^0.23.2"
+
+react-is@^16.13.1, react-is@^16.3.2:
+  version "16.13.1"
+  resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
+  integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
+
+react-lifecycles-compat@^3.0.4:
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362"
+  integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==
+
+react-refresh@^0.14.0:
+  version "0.14.2"
+  resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.2.tgz#3833da01ce32da470f1f936b9d477da5c7028bf9"
+  integrity sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==
+
+react-router-dom@^6.23.0:
+  version "6.23.0"
+  resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-6.23.0.tgz#8b80ad92ad28f4dc38972e92d84b4c208150545a"
+  integrity sha512-Q9YaSYvubwgbal2c9DJKfx6hTNoBp3iJDsl+Duva/DwxoJH+OTXkxGpql4iUK2sla/8z4RpjAm6EWx1qUDuopQ==
+  dependencies:
+    "@remix-run/router" "1.16.0"
+    react-router "6.23.0"
+
+react-router@6.23.0:
+  version "6.23.0"
+  resolved "https://registry.yarnpkg.com/react-router/-/react-router-6.23.0.tgz#2f2d7492c66a6bdf760be4c6bdf9e1d672fa154b"
+  integrity sha512-wPMZ8S2TuPadH0sF5irFGjkNLIcRvOSaEe7v+JER8508dyJumm6XZB1u5kztlX0RVq6AzRVndzqcUh6sFIauzA==
+  dependencies:
+    "@remix-run/router" "1.16.0"
+
+react-transition-group@^4.4.5:
+  version "4.4.5"
+  resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1"
+  integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==
+  dependencies:
+    "@babel/runtime" "^7.5.5"
+    dom-helpers "^5.0.1"
+    loose-envify "^1.4.0"
+    prop-types "^15.6.2"
+
+react@^18.2.0:
+  version "18.3.1"
+  resolved "https://registry.yarnpkg.com/react/-/react-18.3.1.tgz#49ab892009c53933625bd16b2533fc754cab2891"
+  integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==
+  dependencies:
+    loose-envify "^1.1.0"
+
+regenerator-runtime@^0.14.0:
+  version "0.14.1"
+  resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f"
+  integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==
+
+resolve-from@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
+  integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
+
+reusify@^1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
+  integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
+
+rimraf@^3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
+  integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
+  dependencies:
+    glob "^7.1.3"
+
+rollup@^4.13.0:
+  version "4.17.2"
+  resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.17.2.tgz#26d1785d0144122277fdb20ab3a24729ae68301f"
+  integrity sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==
+  dependencies:
+    "@types/estree" "1.0.5"
+  optionalDependencies:
+    "@rollup/rollup-android-arm-eabi" "4.17.2"
+    "@rollup/rollup-android-arm64" "4.17.2"
+    "@rollup/rollup-darwin-arm64" "4.17.2"
+    "@rollup/rollup-darwin-x64" "4.17.2"
+    "@rollup/rollup-linux-arm-gnueabihf" "4.17.2"
+    "@rollup/rollup-linux-arm-musleabihf" "4.17.2"
+    "@rollup/rollup-linux-arm64-gnu" "4.17.2"
+    "@rollup/rollup-linux-arm64-musl" "4.17.2"
+    "@rollup/rollup-linux-powerpc64le-gnu" "4.17.2"
+    "@rollup/rollup-linux-riscv64-gnu" "4.17.2"
+    "@rollup/rollup-linux-s390x-gnu" "4.17.2"
+    "@rollup/rollup-linux-x64-gnu" "4.17.2"
+    "@rollup/rollup-linux-x64-musl" "4.17.2"
+    "@rollup/rollup-win32-arm64-msvc" "4.17.2"
+    "@rollup/rollup-win32-ia32-msvc" "4.17.2"
+    "@rollup/rollup-win32-x64-msvc" "4.17.2"
+    fsevents "~2.3.2"
+
+run-parallel@^1.1.9:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
+  integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
+  dependencies:
+    queue-microtask "^1.2.2"
+
+scheduler@^0.23.2:
+  version "0.23.2"
+  resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.2.tgz#414ba64a3b282892e944cf2108ecc078d115cdc3"
+  integrity sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==
+  dependencies:
+    loose-envify "^1.1.0"
+
+semver@^6.3.1:
+  version "6.3.1"
+  resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
+  integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
+
+semver@^7.6.0:
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d"
+  integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==
+  dependencies:
+    lru-cache "^6.0.0"
+
+shebang-command@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
+  integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
+  dependencies:
+    shebang-regex "^3.0.0"
+
+shebang-regex@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
+  integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
+
+slash@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
+  integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
+
+source-map-js@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af"
+  integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==
+
+strip-ansi@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
+  integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
+  dependencies:
+    ansi-regex "^5.0.1"
+
+strip-json-comments@^3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
+  integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
+
+supports-color@^5.3.0:
+  version "5.5.0"
+  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
+  integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
+  dependencies:
+    has-flag "^3.0.0"
+
+supports-color@^7.1.0:
+  version "7.2.0"
+  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
+  integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
+  dependencies:
+    has-flag "^4.0.0"
+
+text-table@^0.2.0:
+  version "0.2.0"
+  resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
+  integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
+
+to-fast-properties@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
+  integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
+
+to-regex-range@^5.0.1:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
+  integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
+  dependencies:
+    is-number "^7.0.0"
+
+ts-api-utils@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1"
+  integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==
+
+tslib@^2.4.0:
+  version "2.6.2"
+  resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
+  integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
+
+type-check@^0.4.0, type-check@~0.4.0:
+  version "0.4.0"
+  resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
+  integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
+  dependencies:
+    prelude-ls "^1.2.1"
+
+type-fest@^0.20.2:
+  version "0.20.2"
+  resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
+  integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
+
+typescript@^5.2.2:
+  version "5.4.5"
+  resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611"
+  integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==
+
+uncontrollable@^7.2.1:
+  version "7.2.1"
+  resolved "https://registry.yarnpkg.com/uncontrollable/-/uncontrollable-7.2.1.tgz#1fa70ba0c57a14d5f78905d533cf63916dc75738"
+  integrity sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==
+  dependencies:
+    "@babel/runtime" "^7.6.3"
+    "@types/react" ">=16.9.11"
+    invariant "^2.2.4"
+    react-lifecycles-compat "^3.0.4"
+
+uncontrollable@^8.0.1:
+  version "8.0.4"
+  resolved "https://registry.yarnpkg.com/uncontrollable/-/uncontrollable-8.0.4.tgz#a0a8307f638795162fafd0550f4a1efa0f8c5eb6"
+  integrity sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==
+
+undici-types@~5.26.4:
+  version "5.26.5"
+  resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
+  integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
+
+update-browserslist-db@^1.0.13:
+  version "1.0.15"
+  resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.15.tgz#60ed9f8cba4a728b7ecf7356f641a31e3a691d97"
+  integrity sha512-K9HWH62x3/EalU1U6sjSZiylm9C8tgq2mSvshZpqc7QE69RaA2qjhkW2HlNA0tFpEbtyFz7HTqbSdN4MSwUodA==
+  dependencies:
+    escalade "^3.1.2"
+    picocolors "^1.0.0"
+
+uri-js@^4.2.2:
+  version "4.4.1"
+  resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
+  integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
+  dependencies:
+    punycode "^2.1.0"
+
+vite@^5.2.0:
+  version "5.2.11"
+  resolved "https://registry.yarnpkg.com/vite/-/vite-5.2.11.tgz#726ec05555431735853417c3c0bfb36003ca0cbd"
+  integrity sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==
+  dependencies:
+    esbuild "^0.20.1"
+    postcss "^8.4.38"
+    rollup "^4.13.0"
+  optionalDependencies:
+    fsevents "~2.3.3"
+
+warning@^4.0.0, warning@^4.0.3:
+  version "4.0.3"
+  resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3"
+  integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==
+  dependencies:
+    loose-envify "^1.0.0"
+
+which@^2.0.1:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
+  integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
+  dependencies:
+    isexe "^2.0.0"
+
+word-wrap@^1.2.5:
+  version "1.2.5"
+  resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34"
+  integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
+
+wrappy@1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
+  integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
+
+yallist@^3.0.2:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
+  integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
+
+yallist@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
+  integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
+
+yocto-queue@^0.1.0:
+  version "0.1.0"
+  resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
+  integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
-- 
GitLab