From 8ee3b4dc2a2a25899d1bb68dab7b00bd99d190ab Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Luis=20Carri=C3=B3n?=
Date: Thu, 3 Jul 2025 19:21:29 -0300
Subject: [PATCH 1/4] chore: add package react-icons
---
package.json | 1 +
1 file changed, 1 insertion(+)
diff --git a/package.json b/package.json
index c5756cb..411cab9 100644
--- a/package.json
+++ b/package.json
@@ -29,6 +29,7 @@
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.5.2",
+ "react-icons": "^5.5.0",
"starknet": "^7.6.2",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
From 289165ac193a42a3daf1128625a9b18596aba154 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Luis=20Carri=C3=B3n?=
Date: Thu, 3 Jul 2025 19:24:39 -0300
Subject: [PATCH 2/4] feat: create ExternalLink component
---
src/components/external-link/index.tsx | 12 ++++++++++++
1 file changed, 12 insertions(+)
create mode 100644 src/components/external-link/index.tsx
diff --git a/src/components/external-link/index.tsx b/src/components/external-link/index.tsx
new file mode 100644
index 0000000..496aa66
--- /dev/null
+++ b/src/components/external-link/index.tsx
@@ -0,0 +1,12 @@
+interface ExternalLinkProps {
+ href: string
+ children: React.ReactNode
+}
+
+export function ExternalLink({ href, children }: ExternalLinkProps) {
+ return (
+
+ {children}
+
+ )
+}
From b6b1caf60c427f1222182f593fc7a0afcf8bb35f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Luis=20Carri=C3=B3n?=
Date: Thu, 3 Jul 2025 19:25:37 -0300
Subject: [PATCH 3/4] feat: add socials links to footer
---
src/components/footer/page.tsx | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/src/components/footer/page.tsx b/src/components/footer/page.tsx
index 94e0519..687f5dc 100644
--- a/src/components/footer/page.tsx
+++ b/src/components/footer/page.tsx
@@ -1,5 +1,8 @@
+
+import { FaGithub, FaXTwitter, FaTelegram } from "react-icons/fa6";
import Link from "next/link";
import React from "react";
+import { ExternalLink } from "../external-link";
function Footer() {
return (
@@ -10,6 +13,19 @@ function Footer() {
© {new Date().getFullYear()} ShadowChat. All rights reserved.
+
+
+
+
+
+
+
+
+
+
+
+
+
Date: Fri, 4 Jul 2025 18:00:27 -0300
Subject: [PATCH 4/4] fix: build error
---
pnpm-lock.yaml | 446 +++++++++++++++++++++++++------------------------
1 file changed, 229 insertions(+), 217 deletions(-)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e568f8a..c4206b5 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,10 +10,10 @@ importers:
dependencies:
'@next/swc-linux-x64-gnu':
specifier: ^15.3.4
- version: 15.3.4
+ version: 15.3.5
'@prisma/client':
specifier: ^6.6.0
- version: 6.11.0(prisma@6.11.0(typescript@5.8.3))(typescript@5.8.3)
+ version: 6.11.1(prisma@6.11.1(typescript@5.8.3))(typescript@5.8.3)
'@radix-ui/react-dialog':
specifier: ^1.1.11
version: 1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -46,7 +46,7 @@ importers:
version: 0.479.0(react@19.1.0)
motion:
specifier: ^12.15.0
- version: 12.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 12.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
next:
specifier: 15.2.1
version: 15.2.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -65,6 +65,9 @@ importers:
react-hot-toast:
specifier: ^2.5.2
version: 2.5.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-icons:
+ specifier: ^5.5.0
+ version: 5.5.0(react@19.1.0)
starknet:
specifier: ^7.6.2
version: 7.6.2
@@ -86,7 +89,7 @@ importers:
version: 4.1.11
'@types/node':
specifier: ^20
- version: 20.19.2
+ version: 20.19.4
'@types/react':
specifier: ^19
version: 19.1.8
@@ -95,16 +98,16 @@ importers:
version: 19.1.6(@types/react@19.1.8)
eslint:
specifier: ^9
- version: 9.30.0(jiti@2.4.2)
+ version: 9.30.1(jiti@2.4.2)
eslint-config-next:
specifier: 15.2.1
- version: 15.2.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3)
+ version: 15.2.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3)
postcss:
specifier: ^8.5.3
version: 8.5.6
prisma:
specifier: ^6.6.0
- version: 6.11.0(typescript@5.8.3)
+ version: 6.11.1(typescript@5.8.3)
tailwindcss:
specifier: ^4.0.12
version: 4.1.11
@@ -164,8 +167,8 @@ packages:
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.30.0':
- resolution: {integrity: sha512-Wzw3wQwPvc9sHM+NjakWTcPx11mbZyiYHuwWa/QfZ7cIRX7WK54PSk7bdyXDaoaopUcMatv1zaQvOAAO8hCdww==}
+ '@eslint/js@9.30.1':
+ resolution: {integrity: sha512-zXhuECFlyep42KZUhWjfvsmXGX39W8K8LFb8AWXM9gSV9dQB+MrJGLKvW6Zw0Ggnbpw0VHTtrhFXYe3Gym18jg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.6':
@@ -305,18 +308,18 @@ packages:
resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
engines: {node: '>=18.0.0'}
- '@jridgewell/gen-mapping@0.3.11':
- resolution: {integrity: sha512-C512c1ytBTio4MrpWKlJpyFHT6+qfFL8SZ58zBzJ1OOzUEjHeF1BtjY2fH7n4x/g2OV/KiiMLAivOp1DXmiMMw==}
+ '@jridgewell/gen-mapping@0.3.12':
+ resolution: {integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
- '@jridgewell/sourcemap-codec@1.5.3':
- resolution: {integrity: sha512-AiR5uKpFxP3PjO4R19kQGIMwxyRyPuXmKEEy301V1C0+1rVjS94EZQXf1QKZYN8Q0YM+estSPhmx5JwNftv6nw==}
+ '@jridgewell/sourcemap-codec@1.5.4':
+ resolution: {integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==}
- '@jridgewell/trace-mapping@0.3.28':
- resolution: {integrity: sha512-KNNHHwW3EIp4EDYOvYFGyIFfx36R2dNJYH4knnZlF8T5jdbD5Wx8xmSaQ2gP9URkJ04LGEtlcCtwArKcmFcwKw==}
+ '@jridgewell/trace-mapping@0.3.29':
+ resolution: {integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==}
'@module-federation/runtime@0.1.21':
resolution: {integrity: sha512-/p4BhZ0SnjJuiL0wwu+FebFgIUJ9vM+oCY7CyprUHImyi/Y23ulI61WNWMVrKQGgdMoXQDQCL8RH4EnrVP2ZFw==}
@@ -363,8 +366,8 @@ packages:
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-gnu@15.3.4':
- resolution: {integrity: sha512-gEbH9rv9o7I12qPyvZNVTyP/PWKqOp8clvnoYZQiX800KkqsaJZuOXkWgMa7ANCCh/oEN2ZQheh3yH8/kWPSEg==}
+ '@next/swc-linux-x64-gnu@15.3.5':
+ resolution: {integrity: sha512-2xYU0DI9DGN/bAHzVwADid22ba5d/xrbrQlr2U+/Q5WkFUzeL0TDR963BdrtLS/4bMmKZGptLeg6282H/S2i8A==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -423,8 +426,8 @@ packages:
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
engines: {node: '>=12.4.0'}
- '@prisma/client@6.11.0':
- resolution: {integrity: sha512-K9TkKepOYvCOg3qCuKz7ZHf6rf58BFKi08plKjU4qVv9y7/UxO6tLz7PlWcgODUZKURLPmRHjHERffIx/8az4w==}
+ '@prisma/client@6.11.1':
+ resolution: {integrity: sha512-5CLFh8QP6KxRm83pJ84jaVCeSVPQr8k0L2SEtOJHwdkS57/VQDcI/wQpGmdyOZi+D9gdNabdo8tj1Uk+w+upsQ==}
engines: {node: '>=18.18'}
peerDependencies:
prisma: '*'
@@ -435,23 +438,23 @@ packages:
typescript:
optional: true
- '@prisma/config@6.11.0':
- resolution: {integrity: sha512-icBfutMpdrwSf2ggo012zhQ4oianijXL/UPbv4PNVK3WUWbB3/F5Ltq8ZfElGrtwKC6XuFFPxU5qDC9x7vh8zQ==}
+ '@prisma/config@6.11.1':
+ resolution: {integrity: sha512-z6rCTQN741wxDq82cpdzx2uVykpnQIXalLhrWQSR0jlBVOxCIkz3HZnd8ern3uYTcWKfB3IpVAF7K2FU8t/8AQ==}
- '@prisma/debug@6.11.0':
- resolution: {integrity: sha512-zo4oEZMWMt0BFWl+4NK9FUpaEOmjGR3y2/r0lkW/DK4BUBRgMj90s8QqK2K+vXG3xn0nAGg2kOSu+Swn60CFLg==}
+ '@prisma/debug@6.11.1':
+ resolution: {integrity: sha512-lWRb/YSWu8l4Yum1UXfGLtqFzZkVS2ygkWYpgkbgMHn9XJlMITIgeMvJyX5GepChzhmxuSuiq/MY/kGFweOpGw==}
- '@prisma/engines-version@6.11.0-18.9c30299f5a0ea26a96790e13f796dc6094db3173':
- resolution: {integrity: sha512-M3vbyDICFIA1oJl0cFkM0omD4HsJZjFi0hu0f0UxyPABH8KEcZyUd5BToCrNl4B8lUeQn+L5+gfaQleOKp6Lrg==}
+ '@prisma/engines-version@6.11.1-1.f40f79ec31188888a2e33acda0ecc8fd10a853a9':
+ resolution: {integrity: sha512-swFJTOOg4tHyOM1zB/pHb3MeH0i6t7jFKn5l+ZsB23d9AQACuIRo9MouvuKGvnDogzkcjbWnXi/NvOZ0+n5Jfw==}
- '@prisma/engines@6.11.0':
- resolution: {integrity: sha512-uqnYxvPKZPvYZA7F0q4gTR+fVWUJSY5bif7JAKBIOD5SoRRy0qEIaPy4Nna5WDLQaFGshaY/Bh8dLOQMfxhJJw==}
+ '@prisma/engines@6.11.1':
+ resolution: {integrity: sha512-6eKEcV6V8W2eZAUwX2xTktxqPM4vnx3sxz3SDtpZwjHKpC6lhOtc4vtAtFUuf5+eEqBk+dbJ9Dcaj6uQU+FNNg==}
- '@prisma/fetch-engine@6.11.0':
- resolution: {integrity: sha512-ZHHSP7vJFo5hePH+MNovxhqXabIg38ZpCwQfUBON29kwPX3f1pjYnzGpgJLCJy4k7mKGOzTgrXPqH8+nJvq2fw==}
+ '@prisma/fetch-engine@6.11.1':
+ resolution: {integrity: sha512-NBYzmkXTkj9+LxNPRSndaAeALOL1Gr3tjvgRYNqruIPlZ6/ixLeuE/5boYOewant58tnaYFZ5Ne0jFBPfGXHpQ==}
- '@prisma/get-platform@6.11.0':
- resolution: {integrity: sha512-yspBGvOfJQwuoApk5B4aBlHDy6YDXAOe4Ml8U2eZ+M2b7fDd10YDomS3Q4qrYHUUVYF3TJyN86NcnRMOvCMUrA==}
+ '@prisma/get-platform@6.11.1':
+ resolution: {integrity: sha512-b2Z8oV2gwvdCkFemBTFd0x4lsL4O2jLSx8lB7D+XqoFALOQZPa7eAPE1NU0Mj1V8gPHRxIsHnyUNtw2i92psUw==}
'@radix-ui/primitive@1.1.2':
resolution: {integrity: sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA==}
@@ -812,8 +815,8 @@ packages:
'@types/json5@0.0.29':
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- '@types/node@20.19.2':
- resolution: {integrity: sha512-9pLGGwdzOUBDYi0GNjM97FIA+f92fqSke6joWeBjWXllfNxZBs7qeMF7tvtOIsbY45xkWkxrdwUfUf3MnQa9gA==}
+ '@types/node@20.19.4':
+ resolution: {integrity: sha512-OP+We5WV8Xnbuvw0zC2m4qfB/BJvjyCwtNjhHdJxV1639SGSKrLmJkc3fMnp2Qy8nJyHp8RO6umxELN/dS1/EA==}
'@types/react-dom@19.1.6':
resolution: {integrity: sha512-4hOiT/dwO8Ko0gV1m/TJZYk3y0KBnY9vzDh7W+DH17b2HFSOGgdj33dhihPeuy3l0q23+4e+hoXHV6hCC4dCXw==}
@@ -882,98 +885,98 @@ packages:
resolution: {integrity: sha512-VRwixir4zBWCSTP/ljEo091lbpypz57PoeAQ9imjG+vbeof9LplljsL1mos4ccG6H9IjfrVGM359RozUnuFhpw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@unrs/resolver-binding-android-arm-eabi@1.9.2':
- resolution: {integrity: sha512-tS+lqTU3N0kkthU+rYp0spAYq15DU8ld9kXkaKg9sbQqJNF+WPMuNHZQGCgdxrUOEO0j22RKMwRVhF1HTl+X8A==}
+ '@unrs/resolver-binding-android-arm-eabi@1.10.1':
+ resolution: {integrity: sha512-zohDKXT1Ok0yhbVGff4YAg9HUs5ietG5GpvJBPFSApZnGe7uf2cd26DRhKZbn0Be6xHUZrSzP+RAgMmzyc71EA==}
cpu: [arm]
os: [android]
- '@unrs/resolver-binding-android-arm64@1.9.2':
- resolution: {integrity: sha512-MffGiZULa/KmkNjHeuuflLVqfhqLv1vZLm8lWIyeADvlElJ/GLSOkoUX+5jf4/EGtfwrNFcEaB8BRas03KT0/Q==}
+ '@unrs/resolver-binding-android-arm64@1.10.1':
+ resolution: {integrity: sha512-tAN6k5UrTd4nicpA7s2PbjR/jagpDzAmvXFjbpTazUe5FRsFxVcBlS1F5Lzp5jtWU6bdiqRhSvd4X8rdpCffeA==}
cpu: [arm64]
os: [android]
- '@unrs/resolver-binding-darwin-arm64@1.9.2':
- resolution: {integrity: sha512-dzJYK5rohS1sYl1DHdJ3mwfwClJj5BClQnQSyAgEfggbUwA9RlROQSSbKBLqrGfsiC/VyrDPtbO8hh56fnkbsQ==}
+ '@unrs/resolver-binding-darwin-arm64@1.10.1':
+ resolution: {integrity: sha512-+FCsag8WkauI4dQ50XumCXdfvDCZEpMUnvZDsKMxfOisnEklpDFXc6ThY0WqybBYZbiwR5tWcFaZmI0G6b4vrg==}
cpu: [arm64]
os: [darwin]
- '@unrs/resolver-binding-darwin-x64@1.9.2':
- resolution: {integrity: sha512-gaIMWK+CWtXcg9gUyznkdV54LzQ90S3X3dn8zlh+QR5Xy7Y+Efqw4Rs4im61K1juy4YNb67vmJsCDAGOnIeffQ==}
+ '@unrs/resolver-binding-darwin-x64@1.10.1':
+ resolution: {integrity: sha512-qYKGGm5wk71ONcXTMZ0+J11qQeOAPz3nw6VtqrBUUELRyXFyvK8cHhHsLBFR4GHnilc2pgY1HTB2TvdW9wO26Q==}
cpu: [x64]
os: [darwin]
- '@unrs/resolver-binding-freebsd-x64@1.9.2':
- resolution: {integrity: sha512-S7QpkMbVoVJb0xwHFwujnwCAEDe/596xqY603rpi/ioTn9VDgBHnCCxh+UFrr5yxuMH+dliHfjwCZJXOPJGPnw==}
+ '@unrs/resolver-binding-freebsd-x64@1.10.1':
+ resolution: {integrity: sha512-hOHMAhbvIQ63gkpgeNsXcWPSyvXH7ZEyeg254hY0Lp/hX8NdW+FsUWq73g9946Pc/BrcVI/I3C1cmZ4RCX9bNw==}
cpu: [x64]
os: [freebsd]
- '@unrs/resolver-binding-linux-arm-gnueabihf@1.9.2':
- resolution: {integrity: sha512-+XPUMCuCCI80I46nCDFbGum0ZODP5NWGiwS3Pj8fOgsG5/ctz+/zzuBlq/WmGa+EjWZdue6CF0aWWNv84sE1uw==}
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.10.1':
+ resolution: {integrity: sha512-6ds7+zzHJgTDmpe0gmFcOTvSUhG5oZukkt+cCsSb3k4Uiz2yEQB4iCRITX2hBwSW+p8gAieAfecITjgqCkswXw==}
cpu: [arm]
os: [linux]
- '@unrs/resolver-binding-linux-arm-musleabihf@1.9.2':
- resolution: {integrity: sha512-sqvUyAd1JUpwbz33Ce2tuTLJKM+ucSsYpPGl2vuFwZnEIg0CmdxiZ01MHQ3j6ExuRqEDUCy8yvkDKvjYFPb8Zg==}
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.10.1':
+ resolution: {integrity: sha512-P7A0G2/jW00diNJyFeq4W9/nxovD62Ay8CMP4UK9OymC7qO7rG1a8Upad68/bdfpIOn7KSp7Aj/6lEW3yyznAA==}
cpu: [arm]
os: [linux]
- '@unrs/resolver-binding-linux-arm64-gnu@1.9.2':
- resolution: {integrity: sha512-UYA0MA8ajkEDCFRQdng/FVx3F6szBvk3EPnkTTQuuO9lV1kPGuTB+V9TmbDxy5ikaEgyWKxa4CI3ySjklZ9lFA==}
+ '@unrs/resolver-binding-linux-arm64-gnu@1.10.1':
+ resolution: {integrity: sha512-Cg6xzdkrpltcTPO4At+A79zkC7gPDQIgosJmVV8M104ImB6KZi1MrNXgDYIAfkhUYjPzjNooEDFRAwwPadS7ZA==}
cpu: [arm64]
os: [linux]
- '@unrs/resolver-binding-linux-arm64-musl@1.9.2':
- resolution: {integrity: sha512-P/CO3ODU9YJIHFqAkHbquKtFst0COxdphc8TKGL5yCX75GOiVpGqd1d15ahpqu8xXVsqP4MGFP2C3LRZnnL5MA==}
+ '@unrs/resolver-binding-linux-arm64-musl@1.10.1':
+ resolution: {integrity: sha512-aNeg99bVkXa4lt+oZbjNRPC8ZpjJTKxijg/wILrJdzNyAymO2UC/HUK1UfDjt6T7U5p/mK24T3CYOi3/+YEQSA==}
cpu: [arm64]
os: [linux]
- '@unrs/resolver-binding-linux-ppc64-gnu@1.9.2':
- resolution: {integrity: sha512-uKStFlOELBxBum2s1hODPtgJhY4NxYJE9pAeyBgNEzHgTqTiVBPjfTlPFJkfxyTjQEuxZbbJlJnMCrRgD7ubzw==}
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.10.1':
+ resolution: {integrity: sha512-ylz5ojeXrkPrtnzVhpCO+YegG63/aKhkoTlY8PfMfBfLaUG8v6m6iqrL7sBUKdVBgOB4kSTUPt9efQdA/Y3Z/w==}
cpu: [ppc64]
os: [linux]
- '@unrs/resolver-binding-linux-riscv64-gnu@1.9.2':
- resolution: {integrity: sha512-LkbNnZlhINfY9gK30AHs26IIVEZ9PEl9qOScYdmY2o81imJYI4IMnJiW0vJVtXaDHvBvxeAgEy5CflwJFIl3tQ==}
+ '@unrs/resolver-binding-linux-riscv64-gnu@1.10.1':
+ resolution: {integrity: sha512-xcWyhmJfXXOxK7lvE4+rLwBq+on83svlc0AIypfe6x4sMJR+S4oD7n9OynaQShfj2SufPw2KJAotnsNb+4nN2g==}
cpu: [riscv64]
os: [linux]
- '@unrs/resolver-binding-linux-riscv64-musl@1.9.2':
- resolution: {integrity: sha512-vI+e6FzLyZHSLFNomPi+nT+qUWN4YSj8pFtQZSFTtmgFoxqB6NyjxSjAxEC1m93qn6hUXhIsh8WMp+fGgxCoRg==}
+ '@unrs/resolver-binding-linux-riscv64-musl@1.10.1':
+ resolution: {integrity: sha512-mW9JZAdOCyorgi1eLJr4gX7xS67WNG9XNPYj5P8VuttK72XNsmdw9yhOO4tDANMgiLXFiSFaiL1gEpoNtRPw/A==}
cpu: [riscv64]
os: [linux]
- '@unrs/resolver-binding-linux-s390x-gnu@1.9.2':
- resolution: {integrity: sha512-sSO4AlAYhSM2RAzBsRpahcJB1msc6uYLAtP6pesPbZtptF8OU/CbCPhSRW6cnYOGuVmEmWVW5xVboAqCnWTeHQ==}
+ '@unrs/resolver-binding-linux-s390x-gnu@1.10.1':
+ resolution: {integrity: sha512-NZGKhBy6xkJ0k09cWNZz4DnhBcGlhDd3W+j7EYoNvf5TSwj2K6kbmfqTWITEgkvjsMUjm1wsrc4IJaH6VtjyHQ==}
cpu: [s390x]
os: [linux]
- '@unrs/resolver-binding-linux-x64-gnu@1.9.2':
- resolution: {integrity: sha512-jkSkwch0uPFva20Mdu8orbQjv2A3G88NExTN2oPTI1AJ+7mZfYW3cDCTyoH6OnctBKbBVeJCEqh0U02lTkqD5w==}
+ '@unrs/resolver-binding-linux-x64-gnu@1.10.1':
+ resolution: {integrity: sha512-VsjgckJ0gNMw7p0d8In6uPYr+s0p16yrT2rvG4v2jUpEMYkpnfnCiALa9SWshbvlGjKQ98Q2x19agm3iFk8w8Q==}
cpu: [x64]
os: [linux]
- '@unrs/resolver-binding-linux-x64-musl@1.9.2':
- resolution: {integrity: sha512-Uk64NoiTpQbkpl+bXsbeyOPRpUoMdcUqa+hDC1KhMW7aN1lfW8PBlBH4mJ3n3Y47dYE8qi0XTxy1mBACruYBaw==}
+ '@unrs/resolver-binding-linux-x64-musl@1.10.1':
+ resolution: {integrity: sha512-idMnajMeejnaFi0Mx9UTLSYFDAOTfAEP7VjXNgxKApso3Eu2Njs0p2V95nNIyFi4oQVGFmIuCkoznAXtF/Zbmw==}
cpu: [x64]
os: [linux]
- '@unrs/resolver-binding-wasm32-wasi@1.9.2':
- resolution: {integrity: sha512-EpBGwkcjDicjR/ybC0g8wO5adPNdVuMrNalVgYcWi+gYtC1XYNuxe3rufcO7dA76OHGeVabcO6cSkPJKVcbCXQ==}
+ '@unrs/resolver-binding-wasm32-wasi@1.10.1':
+ resolution: {integrity: sha512-7jyhjIRNFjzlr8x5pth6Oi9hv3a7ubcVYm2GBFinkBQKcFhw4nIs5BtauSNtDW1dPIGrxF0ciynCZqzxMrYMsg==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@unrs/resolver-binding-win32-arm64-msvc@1.9.2':
- resolution: {integrity: sha512-EdFbGn7o1SxGmN6aZw9wAkehZJetFPao0VGZ9OMBwKx6TkvDuj6cNeLimF/Psi6ts9lMOe+Dt6z19fZQ9Ye2fw==}
+ '@unrs/resolver-binding-win32-arm64-msvc@1.10.1':
+ resolution: {integrity: sha512-TY79+N+Gkoo7E99K+zmsKNeiuNJYlclZJtKqsHSls8We2iGhgxtletVsiBYie93MSTDRDMI8pkBZJlIJSZPrdA==}
cpu: [arm64]
os: [win32]
- '@unrs/resolver-binding-win32-ia32-msvc@1.9.2':
- resolution: {integrity: sha512-JY9hi1p7AG+5c/dMU8o2kWemM8I6VZxfGwn1GCtf3c5i+IKcMo2NQ8OjZ4Z3/itvY/Si3K10jOBQn7qsD/whUA==}
+ '@unrs/resolver-binding-win32-ia32-msvc@1.10.1':
+ resolution: {integrity: sha512-BAJN5PEPlEV+1m8+PCtFoKm3LQ1P57B4Z+0+efU0NzmCaGk7pUaOxuPgl+m3eufVeeNBKiPDltG0sSB9qEfCxw==}
cpu: [ia32]
os: [win32]
- '@unrs/resolver-binding-win32-x64-msvc@1.9.2':
- resolution: {integrity: sha512-ryoo+EB19lMxAd80ln9BVf8pdOAxLb97amrQ3SFN9OCRn/5M5wvwDgAe4i8ZjhpbiHoDeP8yavcTEnpKBo7lZg==}
+ '@unrs/resolver-binding-win32-x64-msvc@1.10.1':
+ resolution: {integrity: sha512-2v3erKKmmCyIVvvhI2nF15qEbdBpISTq44m9pyd5gfIJB1PN94oePTLWEd82XUbIbvKhv76xTSeUQSCOGesLeg==}
cpu: [x64]
os: [win32]
@@ -1364,8 +1367,8 @@ packages:
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.30.0:
- resolution: {integrity: sha512-iN/SiPxmQu6EVkf+m1qpBxzUhE12YqFLOSySuOyVLJLEF9nzTf+h/1AJYc1JWzCnktggeNrjvQGLngDzXirU6g==}
+ eslint@9.30.1:
+ resolution: {integrity: sha512-zmxXPNMOXmwm9E0yQLi5uqXHs7uq2UIiqEKo3Gq+3fwo1XrJ+hijAZImyF7hclW3E6oHz43Yk3RP8at6OTKflQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -1453,8 +1456,8 @@ packages:
resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
engines: {node: '>= 0.4'}
- framer-motion@12.22.0:
- resolution: {integrity: sha512-qG07rR8/mboCNU34nORbrIbBXbJzP4aDqBdr67TAIVlMryDEOwh7LXjylWovlnPCMg78ExoY0Gn2F1fV+3DNIw==}
+ framer-motion@12.23.0:
+ resolution: {integrity: sha512-xf6NxTGAyf7zR4r2KlnhFmsRfKIbjqeBupEDBAaEtVIBJX96sAon00kMlsKButSIRwPSHjbRrAPnYdJJ9kyhbA==}
peerDependencies:
'@emotion/is-prop-valid': '*'
react: ^18.0.0 || ^19.0.0
@@ -1883,8 +1886,8 @@ packages:
motion-utils@12.19.0:
resolution: {integrity: sha512-BuFTHINYmV07pdWs6lj6aI63vr2N4dg0vR+td0rtrdpWOhBzIkEklZyLcvKBoEtwSqx8Jg06vUB5RS0xDiUybw==}
- motion@12.22.0:
- resolution: {integrity: sha512-Z2KdCLXF0y1zmD9isTs/DyzinnsKERQ526ipw98NIJyet9bWOtepLDsyK9EOrZwdz+lBzHgXB3SdaBreLbG9+g==}
+ motion@12.23.0:
+ resolution: {integrity: sha512-PPNwblArRH9GRC4F3KtOTiIaYd+mtp324vYq3HIL+ueseoAVqPRK5TPFTAQBcIprfVd0NWo3DLzZSiyWaYFXXQ==}
peerDependencies:
'@emotion/is-prop-valid': '*'
react: ^18.0.0 || ^19.0.0
@@ -1905,8 +1908,8 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- napi-postinstall@0.2.5:
- resolution: {integrity: sha512-kmsgUvCRIJohHjbZ3V8avP0I1Pekw329MVAMDzVxsrkjgdnqiwvMX5XwR+hWV66vsAtZ+iM+fVnq8RTQawUmCQ==}
+ napi-postinstall@0.3.0:
+ resolution: {integrity: sha512-M7NqKyhODKV1gRLdkwE7pDsZP2/SC2a2vHkOYh9MCpKMbWVfyVfUw5MaH83Fv6XMjxr5jryUp3IDDL9rlxsTeA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
hasBin: true
@@ -2046,8 +2049,8 @@ packages:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- prisma@6.11.0:
- resolution: {integrity: sha512-gI69E7fusgk32XALpXzdgR10xUx2aFnHiu/JaUo4O07G4JvFT0xNtD0Iy81p37iBLTYFEhWa9VrHKXaiyZ5fLQ==}
+ prisma@6.11.1:
+ resolution: {integrity: sha512-VzJToRlV0s9Vu2bfqHiRJw73hZNCG/AyJeX+kopbu4GATTjTUdEWUteO3p4BLYoHpMS4o8pD3v6tF44BHNZI1w==}
engines: {node: '>=18.18'}
hasBin: true
peerDependencies:
@@ -2078,6 +2081,11 @@ packages:
react: '>=16'
react-dom: '>=16'
+ react-icons@5.5.0:
+ resolution: {integrity: sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==}
+ peerDependencies:
+ react: '*'
+
react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
@@ -2377,8 +2385,8 @@ packages:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- unrs-resolver@1.9.2:
- resolution: {integrity: sha512-VUyWiTNQD7itdiMuJy+EuLEErLj3uwX/EpHQF8EOf33Dq3Ju6VW1GXm+swk6+1h7a49uv9fKZ+dft9jU7esdLA==}
+ unrs-resolver@1.10.1:
+ resolution: {integrity: sha512-EFrL7Hw4kmhZdwWO3dwwFJo6hO3FXuQ6Bg8BK/faHZ9m1YxqBS31BNSTxklIQkxK/4LlV8zTYnPsIRLBzTzjCA==}
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
@@ -2403,8 +2411,8 @@ packages:
'@types/react':
optional: true
- viem@2.31.6:
- resolution: {integrity: sha512-2PPbXL/8bHQxUzaLFDk4R6WHifTcXxAqMC8/j6RBgXl/OexQ1HU8r9OukwfDTqrFoHtWWiYz5fktHATy7+U9nQ==}
+ viem@2.31.7:
+ resolution: {integrity: sha512-mpB8Hp6xK77E/b/yJmpAIQcxcOfpbrwWNItjnXaIA8lxZYt4JS433Pge2gg6Hp3PwyFtaUMh01j5L8EXnLTjQQ==}
peerDependencies:
typescript: '>=5.0.4'
peerDependenciesMeta:
@@ -2472,8 +2480,8 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- zod@3.25.67:
- resolution: {integrity: sha512-idA2YXwpCdqUSKRCACDE6ItZD9TZzy3OZMtpfLoh6oPR47lipysRrJfjzMqFxQ3uJuUPyUeWe1r9vLH33xO/Qw==}
+ zod@3.25.74:
+ resolution: {integrity: sha512-J8poo92VuhKjNknViHRAIuuN6li/EwFbAC8OedzI8uxpEPGiXHGQu9wemIAioIpqgfB4SySaJhdk0mH5Y4ICBg==}
zustand@5.0.6:
resolution: {integrity: sha512-ihAqNeUVhe0MAD+X8M5UzqyZ9k3FFZLBTtqo6JLPwV53cbRB/mJwBI0PxcIgqhBBHlEs8G45OTDTMq3gNcLq3A==}
@@ -2501,8 +2509,8 @@ snapshots:
'@ampproject/remapping@2.3.0':
dependencies:
- '@jridgewell/gen-mapping': 0.3.11
- '@jridgewell/trace-mapping': 0.3.28
+ '@jridgewell/gen-mapping': 0.3.12
+ '@jridgewell/trace-mapping': 0.3.29
'@emnapi/core@1.4.3':
dependencies:
@@ -2520,9 +2528,9 @@ snapshots:
tslib: 2.8.1
optional: true
- '@eslint-community/eslint-utils@4.7.0(eslint@9.30.0(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.7.0(eslint@9.30.1(jiti@2.4.2))':
dependencies:
- eslint: 9.30.0(jiti@2.4.2)
+ eslint: 9.30.1(jiti@2.4.2)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
@@ -2559,7 +2567,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.30.0': {}
+ '@eslint/js@9.30.1': {}
'@eslint/object-schema@2.1.6': {}
@@ -2660,19 +2668,19 @@ snapshots:
dependencies:
minipass: 7.1.2
- '@jridgewell/gen-mapping@0.3.11':
+ '@jridgewell/gen-mapping@0.3.12':
dependencies:
- '@jridgewell/sourcemap-codec': 1.5.3
- '@jridgewell/trace-mapping': 0.3.28
+ '@jridgewell/sourcemap-codec': 1.5.4
+ '@jridgewell/trace-mapping': 0.3.29
'@jridgewell/resolve-uri@3.1.2': {}
- '@jridgewell/sourcemap-codec@1.5.3': {}
+ '@jridgewell/sourcemap-codec@1.5.4': {}
- '@jridgewell/trace-mapping@0.3.28':
+ '@jridgewell/trace-mapping@0.3.29':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.3
+ '@jridgewell/sourcemap-codec': 1.5.4
'@module-federation/runtime@0.1.21':
dependencies:
@@ -2708,7 +2716,7 @@ snapshots:
'@next/swc-linux-x64-gnu@15.2.1':
optional: true
- '@next/swc-linux-x64-gnu@15.3.4': {}
+ '@next/swc-linux-x64-gnu@15.3.5': {}
'@next/swc-linux-x64-musl@15.2.1':
optional: true
@@ -2747,35 +2755,35 @@ snapshots:
'@nolyfill/is-core-module@1.0.39': {}
- '@prisma/client@6.11.0(prisma@6.11.0(typescript@5.8.3))(typescript@5.8.3)':
+ '@prisma/client@6.11.1(prisma@6.11.1(typescript@5.8.3))(typescript@5.8.3)':
optionalDependencies:
- prisma: 6.11.0(typescript@5.8.3)
+ prisma: 6.11.1(typescript@5.8.3)
typescript: 5.8.3
- '@prisma/config@6.11.0':
+ '@prisma/config@6.11.1':
dependencies:
jiti: 2.4.2
- '@prisma/debug@6.11.0': {}
+ '@prisma/debug@6.11.1': {}
- '@prisma/engines-version@6.11.0-18.9c30299f5a0ea26a96790e13f796dc6094db3173': {}
+ '@prisma/engines-version@6.11.1-1.f40f79ec31188888a2e33acda0ecc8fd10a853a9': {}
- '@prisma/engines@6.11.0':
+ '@prisma/engines@6.11.1':
dependencies:
- '@prisma/debug': 6.11.0
- '@prisma/engines-version': 6.11.0-18.9c30299f5a0ea26a96790e13f796dc6094db3173
- '@prisma/fetch-engine': 6.11.0
- '@prisma/get-platform': 6.11.0
+ '@prisma/debug': 6.11.1
+ '@prisma/engines-version': 6.11.1-1.f40f79ec31188888a2e33acda0ecc8fd10a853a9
+ '@prisma/fetch-engine': 6.11.1
+ '@prisma/get-platform': 6.11.1
- '@prisma/fetch-engine@6.11.0':
+ '@prisma/fetch-engine@6.11.1':
dependencies:
- '@prisma/debug': 6.11.0
- '@prisma/engines-version': 6.11.0-18.9c30299f5a0ea26a96790e13f796dc6094db3173
- '@prisma/get-platform': 6.11.0
+ '@prisma/debug': 6.11.1
+ '@prisma/engines-version': 6.11.1-1.f40f79ec31188888a2e33acda0ecc8fd10a853a9
+ '@prisma/get-platform': 6.11.1
- '@prisma/get-platform@6.11.0':
+ '@prisma/get-platform@6.11.1':
dependencies:
- '@prisma/debug': 6.11.0
+ '@prisma/debug': 6.11.1
'@radix-ui/primitive@1.1.2': {}
@@ -2999,8 +3007,8 @@ snapshots:
get-starknet-core: 4.0.0
react: 19.1.0
starknet: 7.6.2
- viem: 2.31.6(typescript@5.8.3)(zod@3.25.67)
- zod: 3.25.67
+ viem: 2.31.7(typescript@5.8.3)(zod@3.25.74)
+ zod: 3.25.74
transitivePeerDependencies:
- bufferutil
- typescript
@@ -3102,7 +3110,7 @@ snapshots:
'@types/json5@0.0.29': {}
- '@types/node@20.19.2':
+ '@types/node@20.19.4':
dependencies:
undici-types: 6.21.0
@@ -3114,15 +3122,15 @@ snapshots:
dependencies:
csstype: 3.1.3
- '@typescript-eslint/eslint-plugin@8.35.1(@typescript-eslint/parser@8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/eslint-plugin@8.35.1(@typescript-eslint/parser@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3)
'@typescript-eslint/scope-manager': 8.35.1
- '@typescript-eslint/type-utils': 8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/type-utils': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3)
'@typescript-eslint/visitor-keys': 8.35.1
- eslint: 9.30.0(jiti@2.4.2)
+ eslint: 9.30.1(jiti@2.4.2)
graphemer: 1.4.0
ignore: 7.0.5
natural-compare: 1.4.0
@@ -3131,14 +3139,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/parser@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
'@typescript-eslint/scope-manager': 8.35.1
'@typescript-eslint/types': 8.35.1
'@typescript-eslint/typescript-estree': 8.35.1(typescript@5.8.3)
'@typescript-eslint/visitor-keys': 8.35.1
debug: 4.4.1
- eslint: 9.30.0(jiti@2.4.2)
+ eslint: 9.30.1(jiti@2.4.2)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -3161,12 +3169,12 @@ snapshots:
dependencies:
typescript: 5.8.3
- '@typescript-eslint/type-utils@8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/type-utils@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
'@typescript-eslint/typescript-estree': 8.35.1(typescript@5.8.3)
- '@typescript-eslint/utils': 8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3)
debug: 4.4.1
- eslint: 9.30.0(jiti@2.4.2)
+ eslint: 9.30.1(jiti@2.4.2)
ts-api-utils: 2.1.0(typescript@5.8.3)
typescript: 5.8.3
transitivePeerDependencies:
@@ -3190,13 +3198,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/utils@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.1(jiti@2.4.2))
'@typescript-eslint/scope-manager': 8.35.1
'@typescript-eslint/types': 8.35.1
'@typescript-eslint/typescript-estree': 8.35.1(typescript@5.8.3)
- eslint: 9.30.0(jiti@2.4.2)
+ eslint: 9.30.1(jiti@2.4.2)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -3206,63 +3214,63 @@ snapshots:
'@typescript-eslint/types': 8.35.1
eslint-visitor-keys: 4.2.1
- '@unrs/resolver-binding-android-arm-eabi@1.9.2':
+ '@unrs/resolver-binding-android-arm-eabi@1.10.1':
optional: true
- '@unrs/resolver-binding-android-arm64@1.9.2':
+ '@unrs/resolver-binding-android-arm64@1.10.1':
optional: true
- '@unrs/resolver-binding-darwin-arm64@1.9.2':
+ '@unrs/resolver-binding-darwin-arm64@1.10.1':
optional: true
- '@unrs/resolver-binding-darwin-x64@1.9.2':
+ '@unrs/resolver-binding-darwin-x64@1.10.1':
optional: true
- '@unrs/resolver-binding-freebsd-x64@1.9.2':
+ '@unrs/resolver-binding-freebsd-x64@1.10.1':
optional: true
- '@unrs/resolver-binding-linux-arm-gnueabihf@1.9.2':
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.10.1':
optional: true
- '@unrs/resolver-binding-linux-arm-musleabihf@1.9.2':
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.10.1':
optional: true
- '@unrs/resolver-binding-linux-arm64-gnu@1.9.2':
+ '@unrs/resolver-binding-linux-arm64-gnu@1.10.1':
optional: true
- '@unrs/resolver-binding-linux-arm64-musl@1.9.2':
+ '@unrs/resolver-binding-linux-arm64-musl@1.10.1':
optional: true
- '@unrs/resolver-binding-linux-ppc64-gnu@1.9.2':
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.10.1':
optional: true
- '@unrs/resolver-binding-linux-riscv64-gnu@1.9.2':
+ '@unrs/resolver-binding-linux-riscv64-gnu@1.10.1':
optional: true
- '@unrs/resolver-binding-linux-riscv64-musl@1.9.2':
+ '@unrs/resolver-binding-linux-riscv64-musl@1.10.1':
optional: true
- '@unrs/resolver-binding-linux-s390x-gnu@1.9.2':
+ '@unrs/resolver-binding-linux-s390x-gnu@1.10.1':
optional: true
- '@unrs/resolver-binding-linux-x64-gnu@1.9.2':
+ '@unrs/resolver-binding-linux-x64-gnu@1.10.1':
optional: true
- '@unrs/resolver-binding-linux-x64-musl@1.9.2':
+ '@unrs/resolver-binding-linux-x64-musl@1.10.1':
optional: true
- '@unrs/resolver-binding-wasm32-wasi@1.9.2':
+ '@unrs/resolver-binding-wasm32-wasi@1.10.1':
dependencies:
'@napi-rs/wasm-runtime': 0.2.11
optional: true
- '@unrs/resolver-binding-win32-arm64-msvc@1.9.2':
+ '@unrs/resolver-binding-win32-arm64-msvc@1.10.1':
optional: true
- '@unrs/resolver-binding-win32-ia32-msvc@1.9.2':
+ '@unrs/resolver-binding-win32-ia32-msvc@1.10.1':
optional: true
- '@unrs/resolver-binding-win32-x64-msvc@1.9.2':
+ '@unrs/resolver-binding-win32-x64-msvc@1.10.1':
optional: true
abi-wan-kanabi@2.2.4:
@@ -3272,10 +3280,10 @@ snapshots:
fs-extra: 10.1.0
yargs: 17.7.2
- abitype@1.0.8(typescript@5.8.3)(zod@3.25.67):
+ abitype@1.0.8(typescript@5.8.3)(zod@3.25.74):
optionalDependencies:
typescript: 5.8.3
- zod: 3.25.67
+ zod: 3.25.74
acorn-jsx@5.3.2(acorn@8.15.0):
dependencies:
@@ -3655,19 +3663,19 @@ snapshots:
escape-string-regexp@4.0.0: {}
- eslint-config-next@15.2.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3):
+ eslint-config-next@15.2.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3):
dependencies:
'@next/eslint-plugin-next': 15.2.1
'@rushstack/eslint-patch': 1.12.0
- '@typescript-eslint/eslint-plugin': 8.35.1(@typescript-eslint/parser@8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/parser': 8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3)
- eslint: 9.30.0(jiti@2.4.2)
+ '@typescript-eslint/eslint-plugin': 8.35.1(@typescript-eslint/parser@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3)
+ eslint: 9.30.1(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.30.0(jiti@2.4.2))
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.30.0(jiti@2.4.2))
- eslint-plugin-jsx-a11y: 6.10.2(eslint@9.30.0(jiti@2.4.2))
- eslint-plugin-react: 7.37.5(eslint@9.30.0(jiti@2.4.2))
- eslint-plugin-react-hooks: 5.2.0(eslint@9.30.0(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.30.1(jiti@2.4.2))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.30.1(jiti@2.4.2))
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@9.30.1(jiti@2.4.2))
+ eslint-plugin-react: 7.37.5(eslint@9.30.1(jiti@2.4.2))
+ eslint-plugin-react-hooks: 5.2.0(eslint@9.30.1(jiti@2.4.2))
optionalDependencies:
typescript: 5.8.3
transitivePeerDependencies:
@@ -3683,33 +3691,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@9.30.0(jiti@2.4.2)):
+ eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@9.30.1(jiti@2.4.2)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.4.1
- eslint: 9.30.0(jiti@2.4.2)
+ eslint: 9.30.1(jiti@2.4.2)
get-tsconfig: 4.10.1
is-bun-module: 2.0.0
stable-hash: 0.0.5
tinyglobby: 0.2.14
- unrs-resolver: 1.9.2
+ unrs-resolver: 1.10.1
optionalDependencies:
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.30.0(jiti@2.4.2))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.30.1(jiti@2.4.2))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.1(@typescript-eslint/parser@8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.30.0(jiti@2.4.2)):
+ eslint-module-utils@2.12.1(@typescript-eslint/parser@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.30.1(jiti@2.4.2)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3)
- eslint: 9.30.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3)
+ eslint: 9.30.1(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.30.0(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.30.1(jiti@2.4.2))
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.30.0(jiti@2.4.2)):
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.30.1(jiti@2.4.2)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -3718,9 +3726,9 @@ snapshots:
array.prototype.flatmap: 1.3.3
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.30.0(jiti@2.4.2)
+ eslint: 9.30.1(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.30.0(jiti@2.4.2))
+ eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.30.1(jiti@2.4.2))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -3732,13 +3740,13 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.35.1(eslint@9.30.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.8.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jsx-a11y@6.10.2(eslint@9.30.0(jiti@2.4.2)):
+ eslint-plugin-jsx-a11y@6.10.2(eslint@9.30.1(jiti@2.4.2)):
dependencies:
aria-query: 5.3.2
array-includes: 3.1.9
@@ -3748,7 +3756,7 @@ snapshots:
axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 9.30.0(jiti@2.4.2)
+ eslint: 9.30.1(jiti@2.4.2)
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
@@ -3757,11 +3765,11 @@ snapshots:
safe-regex-test: 1.1.0
string.prototype.includes: 2.0.1
- eslint-plugin-react-hooks@5.2.0(eslint@9.30.0(jiti@2.4.2)):
+ eslint-plugin-react-hooks@5.2.0(eslint@9.30.1(jiti@2.4.2)):
dependencies:
- eslint: 9.30.0(jiti@2.4.2)
+ eslint: 9.30.1(jiti@2.4.2)
- eslint-plugin-react@7.37.5(eslint@9.30.0(jiti@2.4.2)):
+ eslint-plugin-react@7.37.5(eslint@9.30.1(jiti@2.4.2)):
dependencies:
array-includes: 3.1.9
array.prototype.findlast: 1.2.5
@@ -3769,7 +3777,7 @@ snapshots:
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.2.1
- eslint: 9.30.0(jiti@2.4.2)
+ eslint: 9.30.1(jiti@2.4.2)
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -3792,15 +3800,15 @@ snapshots:
eslint-visitor-keys@4.2.1: {}
- eslint@9.30.0(jiti@2.4.2):
+ eslint@9.30.1(jiti@2.4.2):
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.1(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.21.0
'@eslint/config-helpers': 0.3.0
'@eslint/core': 0.14.0
'@eslint/eslintrc': 3.3.1
- '@eslint/js': 9.30.0
+ '@eslint/js': 9.30.1
'@eslint/plugin-kit': 0.3.3
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
@@ -3910,7 +3918,7 @@ snapshots:
dependencies:
is-callable: 1.2.7
- framer-motion@12.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ framer-motion@12.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
motion-dom: 12.22.0
motion-utils: 12.19.0
@@ -4280,7 +4288,7 @@ snapshots:
magic-string@0.30.17:
dependencies:
- '@jridgewell/sourcemap-codec': 1.5.3
+ '@jridgewell/sourcemap-codec': 1.5.4
math-intrinsics@1.1.0: {}
@@ -4315,9 +4323,9 @@ snapshots:
motion-utils@12.19.0: {}
- motion@12.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ motion@12.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
- framer-motion: 12.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ framer-motion: 12.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
tslib: 2.8.1
optionalDependencies:
react: 19.1.0
@@ -4327,7 +4335,7 @@ snapshots:
nanoid@3.3.11: {}
- napi-postinstall@0.2.5: {}
+ napi-postinstall@0.3.0: {}
natural-compare@1.4.0: {}
@@ -4418,7 +4426,7 @@ snapshots:
object-keys: 1.1.1
safe-push-apply: 1.0.0
- ox@0.8.1(typescript@5.8.3)(zod@3.25.67):
+ ox@0.8.1(typescript@5.8.3)(zod@3.25.74):
dependencies:
'@adraffy/ens-normalize': 1.11.0
'@noble/ciphers': 1.3.0
@@ -4426,7 +4434,7 @@ snapshots:
'@noble/hashes': 1.8.0
'@scure/bip32': 1.7.0
'@scure/bip39': 1.6.0
- abitype: 1.0.8(typescript@5.8.3)(zod@3.25.67)
+ abitype: 1.0.8(typescript@5.8.3)(zod@3.25.74)
eventemitter3: 5.0.1
optionalDependencies:
typescript: 5.8.3
@@ -4477,10 +4485,10 @@ snapshots:
prelude-ls@1.2.1: {}
- prisma@6.11.0(typescript@5.8.3):
+ prisma@6.11.1(typescript@5.8.3):
dependencies:
- '@prisma/config': 6.11.0
- '@prisma/engines': 6.11.0
+ '@prisma/config': 6.11.1
+ '@prisma/engines': 6.11.1
optionalDependencies:
typescript: 5.8.3
@@ -4506,6 +4514,10 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
+ react-icons@5.5.0(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+
react-is@16.13.1: {}
react-remove-scroll-bar@2.3.8(@types/react@19.1.8)(react@19.1.0):
@@ -4890,29 +4902,29 @@ snapshots:
universalify@2.0.1: {}
- unrs-resolver@1.9.2:
+ unrs-resolver@1.10.1:
dependencies:
- napi-postinstall: 0.2.5
+ napi-postinstall: 0.3.0
optionalDependencies:
- '@unrs/resolver-binding-android-arm-eabi': 1.9.2
- '@unrs/resolver-binding-android-arm64': 1.9.2
- '@unrs/resolver-binding-darwin-arm64': 1.9.2
- '@unrs/resolver-binding-darwin-x64': 1.9.2
- '@unrs/resolver-binding-freebsd-x64': 1.9.2
- '@unrs/resolver-binding-linux-arm-gnueabihf': 1.9.2
- '@unrs/resolver-binding-linux-arm-musleabihf': 1.9.2
- '@unrs/resolver-binding-linux-arm64-gnu': 1.9.2
- '@unrs/resolver-binding-linux-arm64-musl': 1.9.2
- '@unrs/resolver-binding-linux-ppc64-gnu': 1.9.2
- '@unrs/resolver-binding-linux-riscv64-gnu': 1.9.2
- '@unrs/resolver-binding-linux-riscv64-musl': 1.9.2
- '@unrs/resolver-binding-linux-s390x-gnu': 1.9.2
- '@unrs/resolver-binding-linux-x64-gnu': 1.9.2
- '@unrs/resolver-binding-linux-x64-musl': 1.9.2
- '@unrs/resolver-binding-wasm32-wasi': 1.9.2
- '@unrs/resolver-binding-win32-arm64-msvc': 1.9.2
- '@unrs/resolver-binding-win32-ia32-msvc': 1.9.2
- '@unrs/resolver-binding-win32-x64-msvc': 1.9.2
+ '@unrs/resolver-binding-android-arm-eabi': 1.10.1
+ '@unrs/resolver-binding-android-arm64': 1.10.1
+ '@unrs/resolver-binding-darwin-arm64': 1.10.1
+ '@unrs/resolver-binding-darwin-x64': 1.10.1
+ '@unrs/resolver-binding-freebsd-x64': 1.10.1
+ '@unrs/resolver-binding-linux-arm-gnueabihf': 1.10.1
+ '@unrs/resolver-binding-linux-arm-musleabihf': 1.10.1
+ '@unrs/resolver-binding-linux-arm64-gnu': 1.10.1
+ '@unrs/resolver-binding-linux-arm64-musl': 1.10.1
+ '@unrs/resolver-binding-linux-ppc64-gnu': 1.10.1
+ '@unrs/resolver-binding-linux-riscv64-gnu': 1.10.1
+ '@unrs/resolver-binding-linux-riscv64-musl': 1.10.1
+ '@unrs/resolver-binding-linux-s390x-gnu': 1.10.1
+ '@unrs/resolver-binding-linux-x64-gnu': 1.10.1
+ '@unrs/resolver-binding-linux-x64-musl': 1.10.1
+ '@unrs/resolver-binding-wasm32-wasi': 1.10.1
+ '@unrs/resolver-binding-win32-arm64-msvc': 1.10.1
+ '@unrs/resolver-binding-win32-ia32-msvc': 1.10.1
+ '@unrs/resolver-binding-win32-x64-msvc': 1.10.1
uri-js@4.4.1:
dependencies:
@@ -4933,15 +4945,15 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.8
- viem@2.31.6(typescript@5.8.3)(zod@3.25.67):
+ viem@2.31.7(typescript@5.8.3)(zod@3.25.74):
dependencies:
'@noble/curves': 1.9.2
'@noble/hashes': 1.8.0
'@scure/bip32': 1.7.0
'@scure/bip39': 1.6.0
- abitype: 1.0.8(typescript@5.8.3)(zod@3.25.67)
+ abitype: 1.0.8(typescript@5.8.3)(zod@3.25.74)
isows: 1.0.7(ws@8.18.2)
- ox: 0.8.1(typescript@5.8.3)(zod@3.25.67)
+ ox: 0.8.1(typescript@5.8.3)(zod@3.25.74)
ws: 8.18.2
optionalDependencies:
typescript: 5.8.3
@@ -5023,7 +5035,7 @@ snapshots:
yocto-queue@0.1.0: {}
- zod@3.25.67: {}
+ zod@3.25.74: {}
zustand@5.0.6(@types/react@19.1.8)(react@19.1.0):
optionalDependencies: