insforge 0.3.3 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (635) hide show
  1. package/.claude-plugin/marketplace.json +20 -0
  2. package/.dockerignore +60 -57
  3. package/.env.example +84 -49
  4. package/.github/ISSUE_TEMPLATE/bug_report.yml +36 -83
  5. package/.github/ISSUE_TEMPLATE/config.yml +11 -11
  6. package/.github/ISSUE_TEMPLATE/feature_request.yml +26 -79
  7. package/.github/PULL_REQUEST_TEMPLATE.md +7 -0
  8. package/.github/copilot-instructions.md +146 -146
  9. package/.github/workflows/build-image.yml +66 -65
  10. package/.github/workflows/ci-premerge-check.yml +23 -23
  11. package/.github/workflows/e2e.yml +63 -0
  12. package/.github/workflows/lint-and-format.yml +32 -32
  13. package/.prettierignore +64 -64
  14. package/CHANGELOG.md +44 -3
  15. package/CLAUDE_PLUGIN.md +104 -0
  16. package/CODE_OF_CONDUCT.md +128 -0
  17. package/CONTRIBUTING.md +125 -125
  18. package/Dockerfile +30 -27
  19. package/GITHUB_OAUTH_SETUP.md +49 -49
  20. package/GOOGLE_OAUTH_SETUP.md +148 -148
  21. package/LICENSE +201 -201
  22. package/README.md +182 -134
  23. package/assets/Dark.svg +23 -23
  24. package/assets/mcpInstallv2.png +0 -0
  25. package/assets/sampleResponse.png +0 -0
  26. package/auth/index.html +13 -0
  27. package/auth/package.json +28 -0
  28. package/auth/public/favicon.ico +0 -0
  29. package/auth/src/App.tsx +33 -0
  30. package/auth/src/components/ErrorCard.tsx +37 -0
  31. package/auth/src/components/Layout.tsx +13 -0
  32. package/auth/src/index.css +19 -0
  33. package/auth/src/lib/broadcastService.ts +117 -0
  34. package/auth/src/lib/utils.ts +11 -0
  35. package/auth/src/main.tsx +22 -0
  36. package/auth/src/pages/ForgotPasswordPage.tsx +11 -0
  37. package/auth/src/pages/ResetPasswordPage.tsx +11 -0
  38. package/auth/src/pages/SignInPage.tsx +60 -0
  39. package/auth/src/pages/SignUpPage.tsx +60 -0
  40. package/auth/src/pages/VerifyEmailPage.tsx +20 -0
  41. package/auth/src/vite-env.d.ts +10 -0
  42. package/auth/tsconfig.json +32 -0
  43. package/auth/tsconfig.node.json +11 -0
  44. package/auth/vite.config.ts +25 -0
  45. package/backend/package.json +78 -75
  46. package/backend/src/api/{middleware → middlewares}/auth.ts +8 -9
  47. package/backend/src/api/middlewares/rate-limiters.ts +127 -0
  48. package/backend/src/api/routes/{ai.ts → ai/index.routes.ts} +22 -26
  49. package/backend/src/api/routes/auth/index.routes.ts +667 -0
  50. package/backend/src/api/routes/auth/oauth.routes.ts +473 -0
  51. package/backend/src/api/routes/{database.advance.ts → database/advance.routes.ts} +128 -65
  52. package/backend/src/api/routes/database/index.routes.ts +90 -0
  53. package/backend/src/api/routes/{database.records.ts → database/records.routes.ts} +26 -12
  54. package/backend/src/api/routes/{database.tables.ts → database/tables.routes.ts} +6 -23
  55. package/backend/src/api/routes/docs/index.routes.ts +75 -0
  56. package/backend/src/api/routes/email/index.routes.ts +35 -0
  57. package/backend/src/api/routes/functions/index.routes.ts +194 -0
  58. package/backend/src/api/routes/{logs.ts → logs/index.routes.ts} +25 -30
  59. package/backend/src/api/routes/{metadata.ts → metadata/index.routes.ts} +33 -31
  60. package/backend/src/api/routes/realtime/channels.routes.ts +81 -0
  61. package/backend/src/api/routes/realtime/index.routes.ts +12 -0
  62. package/backend/src/api/routes/realtime/messages.routes.ts +48 -0
  63. package/backend/src/api/routes/realtime/permissions.routes.ts +19 -0
  64. package/backend/src/api/routes/{secrets.ts → secrets/index.routes.ts} +27 -22
  65. package/backend/src/api/routes/{storage.ts → storage/index.routes.ts} +48 -61
  66. package/backend/src/api/routes/usage/index.routes.ts +91 -0
  67. package/backend/src/infra/config/app.config.ts +51 -0
  68. package/backend/src/infra/database/database.manager.ts +182 -0
  69. package/backend/{migrations → src/infra/database/migrations}/000_create-base-tables.sql +141 -141
  70. package/backend/{migrations → src/infra/database/migrations}/001_create-helper-functions.sql +40 -40
  71. package/backend/{migrations → src/infra/database/migrations}/002_rename-auth-tables.sql +29 -29
  72. package/backend/{migrations → src/infra/database/migrations}/003_create-users-table.sql +55 -55
  73. package/backend/{migrations → src/infra/database/migrations}/004_add-reload-postgrest-func.sql +23 -23
  74. package/backend/{migrations → src/infra/database/migrations}/005_enable-project-admin-modify-users.sql +29 -29
  75. package/backend/{migrations → src/infra/database/migrations}/006_modify-ai-usage-table.sql +24 -24
  76. package/backend/{migrations → src/infra/database/migrations}/007_drop-metadata-table.sql +1 -1
  77. package/backend/{migrations → src/infra/database/migrations}/008_add-system-tables.sql +76 -76
  78. package/backend/{migrations → src/infra/database/migrations}/009_add-function-secrets.sql +23 -23
  79. package/backend/{migrations → src/infra/database/migrations}/010_modify-ai-config-modalities.sql +93 -93
  80. package/backend/{migrations → src/infra/database/migrations}/011_refactor-secrets-table.sql +15 -15
  81. package/backend/{migrations → src/infra/database/migrations}/012_add-storage-uploaded-by.sql +7 -7
  82. package/backend/src/infra/database/migrations/013_create-auth-schema-functions.sql +44 -0
  83. package/backend/src/infra/database/migrations/014_add-updated-at-trigger-user-table.sql +8 -0
  84. package/backend/src/infra/database/migrations/015_create-auth-config-and-email-otp-tables.sql +60 -0
  85. package/backend/src/infra/database/migrations/016_update-auth-config-and-email-otp.sql +24 -0
  86. package/backend/src/infra/database/migrations/017_create-realtime-schema.sql +233 -0
  87. package/backend/src/infra/realtime/realtime.manager.ts +246 -0
  88. package/backend/src/infra/realtime/webhook-sender.ts +82 -0
  89. package/backend/src/{core/secrets/encryption.ts → infra/security/encryption.manager.ts} +3 -2
  90. package/backend/src/infra/security/token.manager.ts +219 -0
  91. package/backend/src/infra/socket/socket.manager.ts +522 -0
  92. package/backend/src/providers/ai/openrouter.provider.ts +380 -0
  93. package/backend/src/providers/email/base.provider.ts +38 -0
  94. package/backend/src/providers/email/cloud.provider.ts +271 -0
  95. package/backend/src/{core/logs/providers → providers/logs}/base.provider.ts +11 -11
  96. package/backend/src/{core/logs/providers → providers/logs}/cloudwatch.provider.ts +61 -38
  97. package/backend/src/providers/logs/local.provider.ts +185 -0
  98. package/backend/src/providers/oauth/apple.provider.ts +266 -0
  99. package/backend/src/providers/oauth/base.provider.ts +29 -0
  100. package/backend/src/providers/oauth/discord.provider.ts +195 -0
  101. package/backend/src/providers/oauth/facebook.provider.ts +194 -0
  102. package/backend/src/providers/oauth/github.provider.ts +208 -0
  103. package/backend/src/providers/oauth/google.provider.ts +249 -0
  104. package/backend/src/providers/oauth/index.ts +8 -0
  105. package/backend/src/providers/oauth/linkedin.provider.ts +240 -0
  106. package/backend/src/providers/oauth/microsoft.provider.ts +169 -0
  107. package/backend/src/providers/oauth/x.provider.ts +202 -0
  108. package/backend/src/providers/storage/base.provider.ts +29 -0
  109. package/backend/src/providers/storage/local.provider.ts +103 -0
  110. package/backend/src/providers/storage/s3.provider.ts +313 -0
  111. package/backend/src/server.ts +317 -288
  112. package/backend/src/{core/ai/config.ts → services/ai/ai-config.service.ts} +19 -24
  113. package/backend/src/services/ai/ai-model.service.ts +60 -0
  114. package/backend/src/{core/ai/usage.ts → services/ai/ai-usage.service.ts} +28 -35
  115. package/backend/src/{core/ai/chat.ts → services/ai/chat-completion.service.ts} +37 -24
  116. package/backend/src/services/ai/helpers.ts +64 -0
  117. package/backend/src/{core/ai/image.ts → services/ai/image-generation.service.ts} +17 -19
  118. package/backend/src/services/ai/index.ts +13 -0
  119. package/backend/src/services/auth/auth-config.service.ts +250 -0
  120. package/backend/src/services/auth/auth-otp.service.ts +424 -0
  121. package/backend/src/services/auth/auth.service.ts +1150 -0
  122. package/backend/src/services/auth/index.ts +4 -0
  123. package/backend/src/{core/auth/oauth.ts → services/auth/oauth-config.service.ts} +106 -52
  124. package/backend/src/{core/database/advance.ts → services/database/database-advance.service.ts} +97 -131
  125. package/backend/src/services/database/database-table.service.ts +802 -0
  126. package/backend/src/services/database/database.service.ts +127 -0
  127. package/backend/src/services/email/email.service.ts +73 -0
  128. package/backend/src/{core/functions/functions.ts → services/functions/function.service.ts} +95 -88
  129. package/backend/src/{core/logs/audit.ts → services/logs/audit.service.ts} +92 -75
  130. package/backend/src/services/logs/log.service.ts +73 -0
  131. package/backend/src/services/realtime/index.ts +3 -0
  132. package/backend/src/services/realtime/realtime-auth.service.ts +104 -0
  133. package/backend/src/services/realtime/realtime-channel.service.ts +237 -0
  134. package/backend/src/services/realtime/realtime-message.service.ts +260 -0
  135. package/backend/src/{core/secrets/secrets.ts → services/secrets/secret.service.ts} +48 -66
  136. package/backend/src/services/storage/storage.service.ts +617 -0
  137. package/backend/src/services/usage/usage.service.ts +149 -0
  138. package/backend/src/types/auth.ts +77 -2
  139. package/backend/src/types/email.ts +8 -0
  140. package/backend/src/types/error-constants.ts +4 -0
  141. package/backend/src/types/logs.ts +0 -29
  142. package/backend/src/types/realtime.ts +18 -0
  143. package/backend/src/{core/socket/types.ts → types/socket.ts} +11 -36
  144. package/backend/src/utils/cookies.ts +35 -0
  145. package/backend/src/utils/environment.ts +9 -3
  146. package/backend/src/utils/logger.ts +20 -2
  147. package/backend/src/utils/s3-config-loader.ts +64 -0
  148. package/backend/src/utils/seed.ts +301 -205
  149. package/backend/src/utils/sql-parser.ts +91 -1
  150. package/backend/src/utils/utils.ts +114 -0
  151. package/backend/src/utils/validations.ts +40 -4
  152. package/backend/tests/README.md +133 -133
  153. package/backend/tests/cleanup-all-test-data.sh +230 -230
  154. package/backend/tests/cloud/test-s3-multitenant.sh +131 -131
  155. package/backend/tests/local/comprehensive-curl-tests.sh +155 -155
  156. package/backend/tests/local/test-ai-config.sh +129 -0
  157. package/backend/tests/local/test-ai-usage.sh +80 -0
  158. package/backend/tests/local/test-auth-router.sh +143 -143
  159. package/backend/tests/local/test-database-router.sh +222 -222
  160. package/backend/tests/local/test-e2e.sh +240 -240
  161. package/backend/tests/local/test-fk-errors.sh +96 -96
  162. package/backend/tests/local/test-functions.sh +123 -0
  163. package/backend/tests/local/test-id-field.sh +200 -200
  164. package/backend/tests/local/test-logs.sh +132 -0
  165. package/backend/tests/local/test-public-bucket.sh +264 -264
  166. package/backend/tests/local/test-secrets.sh +249 -247
  167. package/backend/tests/local/test-serverless-functions.sh.disabled +325 -325
  168. package/backend/tests/local/test-traditional-rest.sh +208 -208
  169. package/backend/tests/manual/README.md +50 -50
  170. package/backend/tests/manual/create-large-table-simple.sql +10 -10
  171. package/backend/tests/manual/seed-large-table.sql +100 -100
  172. package/backend/tests/manual/setup-large-table-extras.sql +33 -33
  173. package/backend/tests/manual/test-bulk-upsert.sh +409 -409
  174. package/backend/tests/manual/test-database-advance.sh +296 -296
  175. package/backend/tests/manual/test-postgrest-stability.sh +191 -191
  176. package/backend/tests/manual/test-rawsql-export-import.sh +411 -411
  177. package/backend/tests/manual/test-rawsql-modes.sh +244 -0
  178. package/backend/tests/manual/test-universal-storage.sh +263 -263
  179. package/backend/tests/manual/test-users.sql +17 -17
  180. package/backend/tests/run-all-tests.sh +139 -139
  181. package/backend/tests/setup.ts +0 -0
  182. package/backend/tests/test-config.sh +338 -302
  183. package/backend/tests/unit/analyze-query.test.ts +697 -0
  184. package/backend/tests/unit/cloud-token.test.ts +48 -0
  185. package/backend/tests/unit/constant.test.ts +8 -0
  186. package/backend/tests/unit/email.test.ts +372 -0
  187. package/backend/tests/unit/environment.test.ts +59 -0
  188. package/backend/tests/unit/helpers.test.ts +63 -0
  189. package/backend/tests/unit/logger.test.ts +22 -0
  190. package/backend/tests/unit/rate-limit.test.ts +154 -0
  191. package/backend/tests/unit/response.test.ts +58 -0
  192. package/backend/tests/unit/sql-parser.test.ts +74 -0
  193. package/backend/tests/unit/uuid.test.ts +21 -0
  194. package/backend/tests/unit/validations.test.ts +80 -0
  195. package/backend/tsconfig.json +22 -22
  196. package/backend/vitest.config.ts +11 -0
  197. package/claude-plugin/.claude-plugin/plugin.json +24 -0
  198. package/claude-plugin/README.md +133 -0
  199. package/claude-plugin/skills/insforge-schema-patterns/SKILL.md +270 -0
  200. package/docker-compose.prod.yml +204 -144
  201. package/docker-compose.yml +232 -167
  202. package/docker-init/db/db-init.sql +97 -125
  203. package/docker-init/db/jwt.sql +5 -5
  204. package/docker-init/db/postgresql.conf +16 -16
  205. package/docker-init/logs/vector.yml +236 -0
  206. package/docs/README.md +44 -0
  207. package/docs/agent-docs/real-time.md +269 -0
  208. package/docs/changelog.mdx +119 -0
  209. package/docs/core-concepts/ai/architecture.mdx +373 -0
  210. package/docs/core-concepts/ai/sdk.mdx +213 -0
  211. package/docs/core-concepts/authentication/architecture.mdx +278 -0
  212. package/docs/core-concepts/authentication/sdk.mdx +414 -0
  213. package/docs/core-concepts/authentication/ui-components/customization.mdx +529 -0
  214. package/docs/core-concepts/authentication/ui-components/nextjs.mdx +221 -0
  215. package/docs/core-concepts/authentication/ui-components/react-router.mdx +184 -0
  216. package/docs/core-concepts/authentication/ui-components/react.mdx +129 -0
  217. package/docs/core-concepts/database/architecture.mdx +256 -0
  218. package/docs/core-concepts/database/sdk.mdx +382 -0
  219. package/docs/core-concepts/email/architecture.mdx +101 -0
  220. package/docs/core-concepts/email/sdk.mdx +53 -0
  221. package/docs/core-concepts/functions/architecture.mdx +105 -0
  222. package/docs/core-concepts/functions/sdk.mdx +184 -0
  223. package/docs/core-concepts/realtime/architecture.mdx +446 -0
  224. package/docs/core-concepts/realtime/sdk.mdx +409 -0
  225. package/docs/core-concepts/storage/architecture.mdx +243 -0
  226. package/docs/core-concepts/storage/sdk.mdx +253 -0
  227. package/docs/deployment/README.md +94 -0
  228. package/docs/deployment/deploy-to-aws-ec2.md +565 -0
  229. package/docs/deployment/deploy-to-azure-virtual-machines.md +313 -0
  230. package/docs/deployment/deploy-to-google-cloud-compute-engine.md +613 -0
  231. package/docs/deployment/deploy-to-render.md +441 -0
  232. package/docs/deprecated/insforge-auth-api.md +214 -214
  233. package/docs/deprecated/insforge-auth-sdk.md +99 -99
  234. package/docs/deprecated/insforge-db-api.md +358 -358
  235. package/docs/deprecated/insforge-db-sdk.md +139 -139
  236. package/docs/deprecated/insforge-debug-sdk.md +156 -156
  237. package/docs/deprecated/insforge-debug.md +64 -64
  238. package/docs/deprecated/insforge-instructions.md +123 -123
  239. package/docs/deprecated/insforge-project.md +117 -117
  240. package/docs/deprecated/insforge-storage-api.md +278 -278
  241. package/docs/deprecated/insforge-storage-sdk.md +158 -158
  242. package/docs/docs.json +232 -0
  243. package/docs/examples/framework-guides/nextjs.mdx +131 -0
  244. package/docs/examples/framework-guides/nuxt.mdx +165 -0
  245. package/docs/examples/framework-guides/react.mdx +165 -0
  246. package/docs/examples/framework-guides/svelte.mdx +153 -0
  247. package/docs/examples/framework-guides/vue.mdx +159 -0
  248. package/docs/examples/overview.mdx +67 -0
  249. package/docs/favicon.svg +19 -0
  250. package/docs/images/changelog/dec-2025/ai-integration.png +0 -0
  251. package/docs/images/changelog/dec-2025/ai-models.webp +0 -0
  252. package/docs/images/changelog/dec-2025/alipay-payment.webp +0 -0
  253. package/docs/images/changelog/dec-2025/apple-login.jpg +0 -0
  254. package/docs/images/changelog/dec-2025/mcp-installer.png +0 -0
  255. package/docs/images/changelog/dec-2025/realtime-module.jpg +0 -0
  256. package/docs/images/changelog/nov-2025/auth-components.webp +0 -0
  257. package/docs/images/changelog/nov-2025/database-metadata.webp +0 -0
  258. package/docs/images/changelog/nov-2025/quickstart-prompts.webp +0 -0
  259. package/docs/images/changelog/nov-2025/sql-editor.webp +0 -0
  260. package/docs/images/changelog/nov-2025/usage-page.webp +0 -0
  261. package/docs/images/changelog/october-2025/csv-upload.webp +0 -0
  262. package/docs/images/changelog/october-2025/logs-feature.webp +0 -0
  263. package/docs/images/changelog/october-2025/oauth-providers.webp +0 -0
  264. package/docs/images/checks-passed.png +0 -0
  265. package/docs/images/dashboard-connect-expanded.png +0 -0
  266. package/docs/images/dashboard-connect.png +0 -0
  267. package/docs/images/hero-dark.png +0 -0
  268. package/docs/images/hero-light.png +0 -0
  269. package/docs/images/icons/ai.svg +4 -0
  270. package/docs/images/icons/auth.svg +1 -0
  271. package/docs/images/icons/database.svg +1 -0
  272. package/docs/images/icons/function.svg +1 -0
  273. package/docs/images/icons/storage.svg +1 -0
  274. package/docs/images/logos/nextjs.svg +4 -0
  275. package/docs/images/logos/nuxt.svg +4 -0
  276. package/docs/images/logos/react.svg +5 -0
  277. package/docs/images/logos/svelte.svg +4 -0
  278. package/docs/images/logos/vue.svg +5 -0
  279. package/docs/images/mcp-install.png +0 -0
  280. package/docs/images/onboarding-mcp.png +0 -0
  281. package/docs/insforge-instructions-sdk.md +89 -407
  282. package/docs/introduction.mdx +45 -0
  283. package/docs/logo/dark.svg +22 -0
  284. package/docs/logo/light.svg +20 -0
  285. package/docs/partnership.mdx +652 -0
  286. package/docs/quickstart.mdx +83 -0
  287. package/docs/showcase/2048-arena.png +0 -0
  288. package/docs/showcase/framegen-cloud.png +0 -0
  289. package/docs/showcase/line-connect-race.png +0 -0
  290. package/docs/showcase/moment-vibe.png +0 -0
  291. package/docs/showcase/national-flags.png +0 -0
  292. package/docs/showcase/pokemon-vibe.png +0 -0
  293. package/docs/showcase/pure-browse-buy.png +0 -0
  294. package/docs/showcase.mdx +52 -0
  295. package/docs/snippets/sdk-installation.mdx +22 -0
  296. package/docs/snippets/service-icons.mdx +27 -0
  297. package/eslint.config.js +10 -3
  298. package/examples/oauth/frontend-oauth-example.html +250 -250
  299. package/examples/response-examples.md +443 -443
  300. package/frontend/components.json +17 -17
  301. package/frontend/package.json +69 -63
  302. package/frontend/src/App.tsx +13 -82
  303. package/frontend/src/assets/icons/checkbox_checked.svg +6 -6
  304. package/frontend/src/assets/icons/checkbox_undetermined.svg +6 -6
  305. package/frontend/src/assets/icons/checked.svg +3 -3
  306. package/frontend/src/assets/icons/connected.svg +3 -0
  307. package/frontend/src/assets/icons/error.svg +3 -3
  308. package/frontend/src/assets/icons/loader.svg +9 -0
  309. package/frontend/src/assets/icons/pencil.svg +4 -4
  310. package/frontend/src/assets/icons/refresh.svg +4 -4
  311. package/frontend/src/assets/icons/step_active.svg +3 -3
  312. package/frontend/src/assets/icons/step_inactive.svg +11 -11
  313. package/frontend/src/assets/icons/warning.svg +3 -3
  314. package/frontend/src/assets/logos/apple.svg +4 -0
  315. package/frontend/src/assets/logos/claude_code.svg +3 -3
  316. package/frontend/src/assets/logos/cline.svg +6 -6
  317. package/frontend/src/assets/logos/cursor.svg +20 -20
  318. package/frontend/src/assets/logos/discord.svg +8 -8
  319. package/frontend/src/assets/logos/facebook.svg +3 -0
  320. package/frontend/src/assets/logos/gemini.svg +19 -19
  321. package/frontend/src/assets/logos/github.svg +5 -5
  322. package/frontend/src/assets/logos/google.svg +13 -13
  323. package/frontend/src/assets/logos/grok.svg +10 -10
  324. package/frontend/src/assets/logos/insforge_dark.svg +15 -15
  325. package/frontend/src/assets/logos/insforge_light.svg +15 -15
  326. package/frontend/src/assets/logos/instagram.svg +2 -0
  327. package/frontend/src/assets/logos/linkedin.svg +3 -0
  328. package/frontend/src/assets/logos/microsoft.svg +1 -0
  329. package/frontend/src/assets/logos/openai.svg +10 -10
  330. package/frontend/src/assets/logos/roo_code.svg +9 -9
  331. package/frontend/src/assets/logos/spotify.svg +17 -0
  332. package/frontend/src/assets/logos/tiktok.svg +6 -0
  333. package/frontend/src/assets/logos/trae.svg +3 -3
  334. package/frontend/src/assets/logos/windsurf.svg +10 -10
  335. package/frontend/src/assets/logos/x.svg +3 -0
  336. package/frontend/src/components/Checkbox.tsx +27 -29
  337. package/frontend/src/components/CodeBlock.tsx +55 -2
  338. package/frontend/src/components/CodeEditor.tsx +92 -0
  339. package/frontend/src/components/ConfirmDialog.tsx +1 -1
  340. package/frontend/src/components/ConnectCTA.tsx +38 -0
  341. package/frontend/src/components/CopyButton.tsx +52 -15
  342. package/frontend/src/components/ErrorState.tsx +1 -2
  343. package/frontend/src/components/FeatureSidebar.tsx +6 -6
  344. package/frontend/src/components/FeatureSidebarItem.tsx +2 -2
  345. package/frontend/src/components/JsonHighlight.tsx +21 -9
  346. package/frontend/src/components/ProjectInfoModal.tsx +128 -0
  347. package/frontend/src/components/PromptDialog.tsx +1 -4
  348. package/frontend/src/components/SearchInput.tsx +1 -2
  349. package/frontend/src/components/Stepper.tsx +53 -0
  350. package/frontend/src/components/ThemeToggle.tsx +3 -3
  351. package/frontend/src/components/datagrid/DataGrid.tsx +25 -32
  352. package/frontend/src/components/datagrid/cell-editors/DateCellEditor.tsx +1 -2
  353. package/frontend/src/components/datagrid/cell-editors/JsonCellEditor.tsx +2 -4
  354. package/frontend/src/components/datagrid/index.ts +23 -0
  355. package/frontend/src/components/index.ts +23 -30
  356. package/frontend/src/components/layout/AppHeader.tsx +131 -91
  357. package/frontend/src/components/layout/AppSidebar.tsx +80 -170
  358. package/frontend/src/components/layout/Layout.tsx +12 -23
  359. package/frontend/src/components/layout/PrimaryMenu.tsx +187 -0
  360. package/frontend/src/components/layout/SecondaryMenu.tsx +70 -0
  361. package/frontend/src/components/layout/index.ts +5 -0
  362. package/frontend/src/components/radix/Tooltip.tsx +24 -13
  363. package/frontend/src/components/radix/index.ts +22 -0
  364. package/frontend/src/features/ai/components/AIConfigCard.tsx +129 -83
  365. package/frontend/src/features/ai/components/AIEmptyState.tsx +12 -7
  366. package/frontend/src/features/ai/components/ModalityFilterSidebar.tsx +101 -0
  367. package/frontend/src/features/ai/components/ModelSelectionDialog.tsx +135 -0
  368. package/frontend/src/features/ai/components/ModelSelectionGrid.tsx +51 -0
  369. package/frontend/src/features/ai/components/SystemPromptDialog.tsx +118 -0
  370. package/frontend/src/features/ai/components/index.ts +6 -0
  371. package/frontend/src/features/ai/helpers.ts +57 -71
  372. package/frontend/src/features/ai/hooks/useAIConfigs.ts +39 -113
  373. package/frontend/src/features/ai/hooks/useAIUsage.ts +0 -2
  374. package/frontend/src/features/ai/pages/AIPage.tsx +166 -0
  375. package/frontend/src/features/ai/services/ai.service.ts +5 -5
  376. package/frontend/src/features/auth/components/AuthPreview.tsx +96 -0
  377. package/frontend/src/features/auth/components/OAuthConfigDialog.tsx +54 -30
  378. package/frontend/src/features/auth/components/UserFormDialog.tsx +13 -6
  379. package/frontend/src/features/auth/components/UsersDataGrid.tsx +50 -14
  380. package/frontend/src/features/auth/components/index.ts +5 -0
  381. package/frontend/src/features/auth/helpers.tsx +208 -0
  382. package/frontend/src/features/auth/hooks/useAnonToken.ts +30 -0
  383. package/frontend/src/features/auth/hooks/useAuthConfig.ts +48 -0
  384. package/frontend/src/features/auth/hooks/useOAuthConfig.ts +14 -10
  385. package/frontend/src/features/auth/hooks/useUsers.ts +43 -5
  386. package/frontend/src/features/auth/index.ts +3 -2
  387. package/frontend/src/features/auth/pages/AuthMethodsPage.tsx +275 -0
  388. package/frontend/src/features/auth/pages/ConfigurationPage.tsx +395 -0
  389. package/frontend/src/features/auth/pages/UsersPage.tsx +257 -0
  390. package/frontend/src/features/auth/services/anonToken.service.ts +11 -0
  391. package/frontend/src/features/auth/services/config.service.ts +19 -0
  392. package/frontend/src/features/auth/services/{oauth.service.ts → oauth-config.service.ts} +4 -4
  393. package/frontend/src/features/auth/services/{auth.service.ts → user.service.ts} +7 -53
  394. package/frontend/src/features/dashboard/components/ConnectionSuccessBanner.tsx +35 -0
  395. package/frontend/src/features/dashboard/components/PromptCard.tsx +21 -0
  396. package/frontend/src/features/dashboard/components/PromptDialog.tsx +103 -0
  397. package/frontend/src/features/dashboard/components/StatsCard.tsx +50 -0
  398. package/frontend/src/features/dashboard/components/index.ts +4 -0
  399. package/frontend/src/features/dashboard/pages/DashboardPage.tsx +212 -0
  400. package/frontend/src/features/dashboard/prompts/ai-chatbot.ts +13 -0
  401. package/frontend/src/features/dashboard/prompts/crm-system.ts +13 -0
  402. package/frontend/src/features/dashboard/prompts/ecommerce-platform.ts +12 -0
  403. package/frontend/src/features/dashboard/prompts/index.ts +31 -0
  404. package/frontend/src/features/dashboard/prompts/instagram-clone.ts +11 -0
  405. package/frontend/src/features/dashboard/prompts/notion-clone.ts +14 -0
  406. package/frontend/src/features/dashboard/prompts/reddit-clone.ts +12 -0
  407. package/frontend/src/features/database/components/DatabaseDataGrid.tsx +48 -17
  408. package/frontend/src/features/database/components/ForeignKeyCell.tsx +15 -34
  409. package/frontend/src/features/database/components/ForeignKeyPopover.tsx +19 -20
  410. package/frontend/src/features/database/components/LinkRecordModal.tsx +120 -125
  411. package/frontend/src/features/database/components/RecordFormDialog.tsx +22 -33
  412. package/frontend/src/features/database/components/RecordFormField.tsx +45 -47
  413. package/frontend/src/features/database/components/SQLModal.tsx +75 -0
  414. package/frontend/src/features/database/components/TableEmptyState.tsx +6 -5
  415. package/frontend/src/features/database/components/TableForm.tsx +28 -19
  416. package/frontend/src/features/database/components/TableFormColumn.tsx +2 -3
  417. package/frontend/src/features/database/components/TableSidebar.tsx +1 -1
  418. package/frontend/src/features/database/components/TablesEmptyState.tsx +48 -0
  419. package/frontend/src/features/database/components/TemplateCard.tsx +37 -0
  420. package/frontend/src/features/database/components/TemplatePreview.tsx +92 -0
  421. package/frontend/src/features/database/components/index.ts +19 -0
  422. package/frontend/src/features/database/constants.ts +28 -2
  423. package/frontend/src/features/database/contexts/SQLEditorContext.tsx +188 -0
  424. package/frontend/src/features/database/helpers.ts +2 -2
  425. package/frontend/src/features/database/hooks/useCSVImport.ts +29 -0
  426. package/frontend/src/features/database/hooks/useDatabase.ts +66 -0
  427. package/frontend/src/features/database/hooks/useRawSQL.ts +55 -0
  428. package/frontend/src/features/database/hooks/useRecords.ts +139 -0
  429. package/frontend/src/features/database/hooks/useTables.ts +135 -0
  430. package/frontend/src/features/database/index.ts +7 -1
  431. package/frontend/src/features/database/pages/FunctionsPage.tsx +203 -0
  432. package/frontend/src/features/database/pages/IndexesPage.tsx +228 -0
  433. package/frontend/src/features/database/pages/PoliciesPage.tsx +237 -0
  434. package/frontend/src/features/database/pages/SQLEditorPage.tsx +382 -0
  435. package/frontend/src/features/database/{page/DatabasePage.tsx → pages/TablesPage.tsx} +168 -209
  436. package/frontend/src/features/database/pages/TemplatesPage.tsx +39 -0
  437. package/frontend/src/features/database/pages/TriggersPage.tsx +230 -0
  438. package/frontend/src/features/database/services/advance.service.ts +40 -0
  439. package/frontend/src/features/database/services/database.service.ts +33 -194
  440. package/frontend/src/features/database/services/record.service.ts +219 -0
  441. package/frontend/src/features/database/services/table.service.ts +58 -0
  442. package/frontend/src/features/database/templates/ai-chatbot.ts +402 -0
  443. package/frontend/src/features/database/templates/crm-system.ts +528 -0
  444. package/frontend/src/features/database/templates/ecommerce-platform.ts +553 -0
  445. package/frontend/src/features/database/templates/index.ts +34 -0
  446. package/frontend/src/features/database/templates/instagram-clone.ts +222 -0
  447. package/frontend/src/features/database/templates/notion-clone.ts +483 -0
  448. package/frontend/src/features/database/templates/reddit-clone.ts +526 -0
  449. package/frontend/src/features/functions/components/FunctionRow.tsx +2 -1
  450. package/frontend/src/features/functions/components/FunctionsSidebar.tsx +1 -1
  451. package/frontend/src/features/functions/components/SecretRow.tsx +1 -1
  452. package/frontend/src/features/functions/components/index.ts +5 -0
  453. package/frontend/src/features/functions/hooks/useFunctions.ts +4 -4
  454. package/frontend/src/features/{secrets → functions}/hooks/useSecrets.ts +5 -5
  455. package/frontend/src/features/functions/pages/FunctionsPage.tsx +148 -0
  456. package/frontend/src/features/functions/{components/SecretsContent.tsx → pages/SecretsPage.tsx} +19 -21
  457. package/frontend/src/features/functions/services/{functions.service.ts → function.service.ts} +2 -2
  458. package/frontend/src/features/{secrets/services/secrets.service.ts → functions/services/secret.service.ts} +2 -2
  459. package/frontend/src/features/login/hooks/usePartnerOrigin.ts +27 -0
  460. package/frontend/src/features/login/pages/CloudLoginPage.tsx +118 -0
  461. package/frontend/src/features/login/{page → pages}/LoginPage.tsx +16 -23
  462. package/frontend/src/features/login/services/partnership.service.ts +65 -0
  463. package/frontend/src/features/logs/components/LogsDataGrid.tsx +89 -0
  464. package/frontend/src/features/logs/components/SeverityBadge.tsx +18 -0
  465. package/frontend/src/features/logs/components/index.ts +2 -0
  466. package/frontend/src/features/logs/helpers.ts +24 -0
  467. package/frontend/src/features/logs/hooks/useAuditLogs.ts +4 -4
  468. package/frontend/src/features/logs/hooks/useLogSources.ts +137 -0
  469. package/frontend/src/features/logs/hooks/useLogs.ts +163 -0
  470. package/frontend/src/features/logs/hooks/useMcpUsage.ts +128 -0
  471. package/frontend/src/features/logs/index.ts +8 -2
  472. package/frontend/src/features/logs/{page → pages}/AuditsPage.tsx +91 -38
  473. package/frontend/src/features/logs/pages/LogsPage.tsx +152 -0
  474. package/frontend/src/features/logs/pages/MCPLogsPage.tsx +84 -0
  475. package/frontend/src/features/logs/services/audit.service.ts +63 -0
  476. package/frontend/src/features/logs/services/log.service.ts +15 -110
  477. package/frontend/src/features/logs/services/usage.service.ts +31 -0
  478. package/frontend/src/features/onboard/components/McpConnectionStatus.tsx +68 -0
  479. package/frontend/src/features/onboard/components/OnboardingModal.tsx +267 -0
  480. package/frontend/src/features/onboard/components/VideoDemoModal.tsx +38 -0
  481. package/frontend/src/features/onboard/components/index.ts +4 -0
  482. package/frontend/src/features/onboard/components/mcp/CursorDeeplinkGenerator.tsx +2 -2
  483. package/frontend/src/features/onboard/components/mcp/{mcp-helper.tsx → helpers.tsx} +8 -8
  484. package/frontend/src/features/onboard/components/mcp/index.ts +2 -3
  485. package/frontend/src/features/onboard/index.ts +13 -3
  486. package/frontend/src/features/realtime/components/ChannelRow.tsx +83 -0
  487. package/frontend/src/features/realtime/components/EditChannelModal.tsx +246 -0
  488. package/frontend/src/features/realtime/components/MessageRow.tsx +85 -0
  489. package/frontend/src/features/realtime/components/RealtimeEmptyState.tsx +30 -0
  490. package/frontend/src/features/realtime/hooks/useRealtime.ts +218 -0
  491. package/frontend/src/features/realtime/index.ts +11 -0
  492. package/frontend/src/features/realtime/pages/RealtimeChannelsPage.tsx +172 -0
  493. package/frontend/src/features/realtime/pages/RealtimeMessagesPage.tsx +211 -0
  494. package/frontend/src/features/realtime/pages/RealtimePermissionsPage.tsx +191 -0
  495. package/frontend/src/features/realtime/services/realtime.service.ts +107 -0
  496. package/frontend/src/features/storage/components/BucketEmptyState.tsx +9 -6
  497. package/frontend/src/features/storage/components/BucketFormDialog.tsx +25 -41
  498. package/frontend/src/features/storage/components/FilePreviewDialog.tsx +20 -8
  499. package/frontend/src/features/storage/components/StorageDataGrid.tsx +4 -3
  500. package/frontend/src/features/storage/components/StorageManager.tsx +23 -34
  501. package/frontend/src/features/storage/components/index.ts +12 -0
  502. package/frontend/src/features/storage/hooks/useStorage.ts +208 -0
  503. package/frontend/src/features/storage/{page → pages}/StoragePage.tsx +41 -143
  504. package/frontend/src/features/storage/services/storage.service.ts +22 -1
  505. package/frontend/src/features/visualizer/components/AuthNode.tsx +72 -56
  506. package/frontend/src/features/visualizer/components/BucketNode.tsx +4 -4
  507. package/frontend/src/features/visualizer/components/SchemaVisualizer.tsx +108 -80
  508. package/frontend/src/features/visualizer/components/TableNode.tsx +34 -41
  509. package/frontend/src/features/visualizer/components/VisualizerSkeleton.tsx +12 -4
  510. package/frontend/src/features/visualizer/pages/VisualizerPage.tsx +97 -0
  511. package/frontend/src/index.css +1 -0
  512. package/frontend/src/lib/analytics/posthog.tsx +27 -0
  513. package/frontend/src/lib/contexts/AuthContext.tsx +38 -31
  514. package/frontend/src/lib/contexts/SocketContext.tsx +123 -80
  515. package/frontend/src/{features/metadata → lib}/hooks/useMetadata.ts +1 -1
  516. package/frontend/src/lib/hooks/useToast.tsx +6 -2
  517. package/frontend/src/lib/routing/AppRoutes.tsx +99 -0
  518. package/frontend/src/lib/routing/RequireAuth.tsx +27 -0
  519. package/frontend/src/lib/utils/cloudMessaging.ts +20 -0
  520. package/frontend/src/lib/utils/menuItems.ts +207 -0
  521. package/frontend/src/lib/utils/{validation-schemas.ts → schemaValidations.ts} +10 -5
  522. package/frontend/src/lib/utils/utils.ts +32 -1
  523. package/frontend/src/vite-env.d.ts +1 -0
  524. package/frontend/tsconfig.json +25 -25
  525. package/frontend/tsconfig.node.json +9 -9
  526. package/frontend/vite.config.ts +5 -3
  527. package/functions/deno.json +24 -24
  528. package/functions/server.ts +315 -290
  529. package/functions/worker-template.js +15 -4
  530. package/i18n/README.ar.md +130 -0
  531. package/i18n/README.de.md +130 -0
  532. package/i18n/README.es.md +154 -0
  533. package/i18n/README.fr.md +134 -0
  534. package/i18n/README.hi.md +129 -0
  535. package/i18n/README.ja.md +174 -0
  536. package/i18n/README.ko.md +137 -0
  537. package/i18n/README.pt-BR.md +131 -0
  538. package/i18n/README.ru.md +129 -0
  539. package/i18n/README.zh-CN.md +133 -0
  540. package/openapi/ai.yaml +715 -688
  541. package/openapi/auth.yaml +1244 -563
  542. package/openapi/email.yaml +158 -0
  543. package/openapi/functions.yaml +475 -475
  544. package/openapi/health.yaml +29 -29
  545. package/openapi/logs.yaml +223 -223
  546. package/openapi/metadata.yaml +177 -177
  547. package/openapi/realtime.yaml +699 -0
  548. package/openapi/records.yaml +381 -381
  549. package/openapi/secrets.yaml +370 -370
  550. package/openapi/storage.yaml +875 -875
  551. package/openapi/tables.yaml +463 -463
  552. package/package.json +97 -88
  553. package/shared-schemas/package.json +31 -31
  554. package/shared-schemas/src/ai-api.schema.ts +34 -58
  555. package/shared-schemas/src/ai.schema.ts +63 -54
  556. package/shared-schemas/src/auth-api.schema.ts +352 -193
  557. package/shared-schemas/src/auth.schema.ts +43 -7
  558. package/shared-schemas/src/cloud-events.schema.ts +57 -0
  559. package/shared-schemas/src/database-api.schema.ts +35 -4
  560. package/shared-schemas/src/database.schema.ts +40 -1
  561. package/shared-schemas/src/docs.schema.ts +26 -0
  562. package/shared-schemas/src/email-api.schema.ts +30 -0
  563. package/shared-schemas/src/index.ts +5 -0
  564. package/shared-schemas/src/logs-api.schema.ts +7 -1
  565. package/shared-schemas/src/logs.schema.ts +26 -0
  566. package/shared-schemas/src/metadata.schema.ts +18 -4
  567. package/shared-schemas/src/realtime-api.schema.ts +111 -0
  568. package/shared-schemas/src/realtime.schema.ts +143 -0
  569. package/shared-schemas/tsconfig.json +21 -21
  570. package/tsconfig.json +7 -7
  571. package/zeabur/README.md +13 -0
  572. package/zeabur/template.yml +1032 -0
  573. package/.github/workflows/deploy-aws.yml +0 -130
  574. package/backend/src/api/routes/agent.ts +0 -29
  575. package/backend/src/api/routes/auth.oauth.ts +0 -482
  576. package/backend/src/api/routes/auth.ts +0 -386
  577. package/backend/src/api/routes/docs.ts +0 -66
  578. package/backend/src/api/routes/functions.ts +0 -183
  579. package/backend/src/api/routes/openapi.ts +0 -82
  580. package/backend/src/api/routes/usage.ts +0 -96
  581. package/backend/src/core/ai/client.ts +0 -242
  582. package/backend/src/core/ai/model.ts +0 -117
  583. package/backend/src/core/auth/auth.ts +0 -780
  584. package/backend/src/core/database/manager.ts +0 -178
  585. package/backend/src/core/database/table.ts +0 -772
  586. package/backend/src/core/documentation/agent.ts +0 -689
  587. package/backend/src/core/documentation/openapi.ts +0 -856
  588. package/backend/src/core/logs/analytics.ts +0 -76
  589. package/backend/src/core/logs/providers/localdb.provider.ts +0 -246
  590. package/backend/src/core/socket/socket.ts +0 -388
  591. package/backend/src/core/storage/storage.ts +0 -923
  592. package/backend/src/utils/cloud-token.ts +0 -39
  593. package/backend/src/utils/helpers.ts +0 -49
  594. package/backend/src/utils/uuid.ts +0 -9
  595. package/backend/tests/manual/test-better-auth.sh +0 -303
  596. package/docker-init/db/logs.sql +0 -9
  597. package/frontend/README.md +0 -112
  598. package/frontend/src/components/datagrid/index.tsx +0 -20
  599. package/frontend/src/components/layout/CloudLayout.tsx +0 -95
  600. package/frontend/src/features/ai/components/AIConfigDialog.tsx +0 -76
  601. package/frontend/src/features/ai/components/AIConfigForm.tsx +0 -222
  602. package/frontend/src/features/ai/components/fields/ModalityField.tsx +0 -87
  603. package/frontend/src/features/ai/components/fields/ModelSelectionField.tsx +0 -134
  604. package/frontend/src/features/ai/components/fields/SystemPromptField.tsx +0 -33
  605. package/frontend/src/features/ai/page/AIPage.tsx +0 -178
  606. package/frontend/src/features/auth/components/AddOAuthDialog.tsx +0 -106
  607. package/frontend/src/features/auth/components/AuthMethodTab.tsx +0 -238
  608. package/frontend/src/features/auth/components/UsersTab.tsx +0 -114
  609. package/frontend/src/features/auth/page/AuthenticationPage.tsx +0 -169
  610. package/frontend/src/features/dashboard/page/DashboardPage.tsx +0 -194
  611. package/frontend/src/features/database/hooks/UseLinkModal.tsx +0 -78
  612. package/frontend/src/features/functions/components/FunctionViewer.tsx +0 -46
  613. package/frontend/src/features/functions/components/FunctionsContent.tsx +0 -88
  614. package/frontend/src/features/functions/page/FunctionsPage.tsx +0 -28
  615. package/frontend/src/features/login/components/AuthErrorBoundary.tsx +0 -87
  616. package/frontend/src/features/login/components/PrivateRoute.tsx +0 -24
  617. package/frontend/src/features/login/page/CloudLoginPage.tsx +0 -93
  618. package/frontend/src/features/logs/components/AnalyticsLogsTable.tsx +0 -313
  619. package/frontend/src/features/logs/components/LogsTable.tsx +0 -199
  620. package/frontend/src/features/logs/page/AnalyticsLogsPage.tsx +0 -530
  621. package/frontend/src/features/metadata/index.ts +0 -0
  622. package/frontend/src/features/metadata/page/MetadataPage.tsx +0 -136
  623. package/frontend/src/features/onboard/components/CompletionCard.tsx +0 -41
  624. package/frontend/src/features/onboard/components/OnboardButton.tsx +0 -84
  625. package/frontend/src/features/onboard/components/StepContent.tsx +0 -91
  626. package/frontend/src/features/onboard/components/TestConnectionStep.tsx +0 -53
  627. package/frontend/src/features/onboard/components/mcp/McpInstallation.tsx +0 -144
  628. package/frontend/src/features/onboard/page/OnBoardPage.tsx +0 -104
  629. package/frontend/src/features/onboard/types.ts +0 -8
  630. package/frontend/src/features/visualizer/page/VisualizerPage.tsx +0 -127
  631. package/frontend/src/lib/contexts/OnboardStepContext.tsx +0 -68
  632. package/frontend/src/lib/hooks/useOnboardingCompletion.ts +0 -29
  633. /package/backend/src/api/{middleware → middlewares}/error.ts +0 -0
  634. /package/backend/src/api/{middleware → middlewares}/upload.ts +0 -0
  635. /package/frontend/src/{features/metadata → lib}/services/metadata.service.ts +0 -0
@@ -1,19 +1,19 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_1767_22962)">
3
- <path d="M19.2154 9.61643L18.8008 9.59977H18.8C14.2679 9.42143 10.5779 5.73143 10.3995 1.19935L10.3829 0.784349C10.375 0.578516 10.2058 0.416016 9.99996 0.416016C9.79413 0.416016 9.62496 0.578516 9.61704 0.783932L9.60038 1.19893C9.42163 5.73102 5.73163 9.42102 1.19913 9.59977L0.784543 9.61643C0.579126 9.62435 0.416626 9.79352 0.416626 9.99935C0.416626 10.2052 0.579126 10.3743 0.784959 10.3823L1.19954 10.3985C5.73163 10.5777 9.42163 14.2677 9.60038 18.7998L9.61704 19.2148C9.62496 19.4202 9.79413 19.5827 9.99996 19.5827C10.2058 19.5827 10.375 19.4202 10.3829 19.2148L10.3995 18.7998C10.5783 14.2677 14.2683 10.5777 18.8004 10.3985L19.215 10.3823C19.4208 10.3743 19.5833 10.2052 19.5833 9.99935C19.5833 9.79352 19.4208 9.62435 19.2154 9.61643Z" fill="url(#paint0_linear_1767_22962)"/>
4
- </g>
5
- <defs>
6
- <linearGradient id="paint0_linear_1767_22962" x1="1.62746" y1="1.62685" x2="18.9283" y2="18.9277" gradientUnits="userSpaceOnUse">
7
- <stop stop-color="#CA5DF5"/>
8
- <stop offset="0.036" stop-color="#C05FF4"/>
9
- <stop offset="0.293" stop-color="#806CEA"/>
10
- <stop offset="0.528" stop-color="#4D77E3"/>
11
- <stop offset="0.731" stop-color="#297FDD"/>
12
- <stop offset="0.895" stop-color="#1283DA"/>
13
- <stop offset="1" stop-color="#0A85D9"/>
14
- </linearGradient>
15
- <clipPath id="clip0_1767_22962">
16
- <rect width="20" height="20" fill="white"/>
17
- </clipPath>
18
- </defs>
19
- </svg>
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1767_22962)">
3
+ <path d="M19.2154 9.61643L18.8008 9.59977H18.8C14.2679 9.42143 10.5779 5.73143 10.3995 1.19935L10.3829 0.784349C10.375 0.578516 10.2058 0.416016 9.99996 0.416016C9.79413 0.416016 9.62496 0.578516 9.61704 0.783932L9.60038 1.19893C9.42163 5.73102 5.73163 9.42102 1.19913 9.59977L0.784543 9.61643C0.579126 9.62435 0.416626 9.79352 0.416626 9.99935C0.416626 10.2052 0.579126 10.3743 0.784959 10.3823L1.19954 10.3985C5.73163 10.5777 9.42163 14.2677 9.60038 18.7998L9.61704 19.2148C9.62496 19.4202 9.79413 19.5827 9.99996 19.5827C10.2058 19.5827 10.375 19.4202 10.3829 19.2148L10.3995 18.7998C10.5783 14.2677 14.2683 10.5777 18.8004 10.3985L19.215 10.3823C19.4208 10.3743 19.5833 10.2052 19.5833 9.99935C19.5833 9.79352 19.4208 9.62435 19.2154 9.61643Z" fill="url(#paint0_linear_1767_22962)"/>
4
+ </g>
5
+ <defs>
6
+ <linearGradient id="paint0_linear_1767_22962" x1="1.62746" y1="1.62685" x2="18.9283" y2="18.9277" gradientUnits="userSpaceOnUse">
7
+ <stop stop-color="#CA5DF5"/>
8
+ <stop offset="0.036" stop-color="#C05FF4"/>
9
+ <stop offset="0.293" stop-color="#806CEA"/>
10
+ <stop offset="0.528" stop-color="#4D77E3"/>
11
+ <stop offset="0.731" stop-color="#297FDD"/>
12
+ <stop offset="0.895" stop-color="#1283DA"/>
13
+ <stop offset="1" stop-color="#0A85D9"/>
14
+ </linearGradient>
15
+ <clipPath id="clip0_1767_22962">
16
+ <rect width="20" height="20" fill="white"/>
17
+ </clipPath>
18
+ </defs>
19
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_114_4196)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12 0C18.6276 0 24 5.50792 24 12.3035C24 17.7383 20.5656 22.3487 15.8004 23.9771C15.192 24.0983 14.976 23.7141 14.976 23.3865C14.976 22.9809 14.9904 21.6562 14.9904 20.0098C14.9904 18.8626 14.6064 18.1138 14.1756 17.7322C16.848 17.4274 19.656 16.3869 19.656 11.6613C19.656 10.3173 19.1904 9.22058 18.42 8.35898C18.5448 8.04818 18.9564 6.79674 18.3024 5.10234C18.3024 5.10234 17.2968 4.77267 15.006 6.36387C14.0472 6.09147 13.02 5.95441 12 5.94961C10.98 5.95441 9.954 6.09147 8.9964 6.36387C6.7032 4.77267 5.6952 5.10234 5.6952 5.10234C5.0436 6.79674 5.4552 8.04818 5.5788 8.35898C4.812 9.22058 4.3428 10.3173 4.3428 11.6613C4.3428 16.3749 7.1448 17.4314 9.81 17.7422C9.4668 18.0494 9.156 18.5913 9.048 19.3869C8.364 19.7013 6.6264 20.2454 5.556 18.365C5.556 18.365 4.9212 17.1829 3.7164 17.0965C3.7164 17.0965 2.5464 17.0809 3.6348 17.8441C3.6348 17.8441 4.4208 18.2221 4.9668 19.6441C4.9668 19.6441 5.6712 21.8401 9.0096 21.0961C9.0156 22.1245 9.0264 23.0937 9.0264 23.3865C9.0264 23.7117 8.8056 24.0923 8.2068 23.9783C3.438 22.3523 0 17.7395 0 12.3035C0 5.50792 5.3736 0 12 0Z" fill="currentColor"/>
4
- </g>
5
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_114_4196)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12 0C18.6276 0 24 5.50792 24 12.3035C24 17.7383 20.5656 22.3487 15.8004 23.9771C15.192 24.0983 14.976 23.7141 14.976 23.3865C14.976 22.9809 14.9904 21.6562 14.9904 20.0098C14.9904 18.8626 14.6064 18.1138 14.1756 17.7322C16.848 17.4274 19.656 16.3869 19.656 11.6613C19.656 10.3173 19.1904 9.22058 18.42 8.35898C18.5448 8.04818 18.9564 6.79674 18.3024 5.10234C18.3024 5.10234 17.2968 4.77267 15.006 6.36387C14.0472 6.09147 13.02 5.95441 12 5.94961C10.98 5.95441 9.954 6.09147 8.9964 6.36387C6.7032 4.77267 5.6952 5.10234 5.6952 5.10234C5.0436 6.79674 5.4552 8.04818 5.5788 8.35898C4.812 9.22058 4.3428 10.3173 4.3428 11.6613C4.3428 16.3749 7.1448 17.4314 9.81 17.7422C9.4668 18.0494 9.156 18.5913 9.048 19.3869C8.364 19.7013 6.6264 20.2454 5.556 18.365C5.556 18.365 4.9212 17.1829 3.7164 17.0965C3.7164 17.0965 2.5464 17.0809 3.6348 17.8441C3.6348 17.8441 4.4208 18.2221 4.9668 19.6441C4.9668 19.6441 5.6712 21.8401 9.0096 21.0961C9.0156 22.1245 9.0264 23.0937 9.0264 23.3865C9.0264 23.7117 8.8056 24.0923 8.2068 23.9783C3.438 22.3523 0 17.7395 0 12.3035C0 5.50792 5.3736 0 12 0Z" fill="currentColor"/>
4
+ </g>
5
+ </svg>
@@ -1,13 +1,13 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_114_4184)">
3
- <path d="M23.714 12.2244C23.714 11.2412 23.6342 10.5236 23.4615 9.77954H12.2336V14.2175H18.8241C18.6913 15.3204 17.9738 16.9814 16.3793 18.0975L16.3569 18.246L19.907 20.9962L20.1529 21.0208C22.4118 18.9346 23.714 15.8652 23.714 12.2244Z" fill="#4285F4"/>
4
- <path d="M12.2336 23.9176C15.4624 23.9176 18.173 22.8545 20.1529 21.0209L16.3792 18.0976C15.3694 18.8018 14.014 19.2934 12.2336 19.2934C9.07115 19.2934 6.38709 17.2074 5.43029 14.324L5.29005 14.3359L1.59863 17.1927L1.55035 17.3269C3.51689 21.2334 7.55631 23.9176 12.2336 23.9176Z" fill="#34A853"/>
5
- <path d="M5.43029 14.324C5.17783 13.58 5.03173 12.7826 5.03173 11.9589C5.03173 11.135 5.17783 10.3378 5.41701 9.59366L5.41032 9.43519L1.67264 6.53247L1.55035 6.59064C0.739849 8.21174 0.27478 10.0322 0.27478 11.9589C0.27478 13.8855 0.739849 15.7059 1.55035 17.327L5.43029 14.324Z" fill="#FBBC05"/>
6
- <path d="M12.2336 4.62403C14.4791 4.62403 15.9939 5.59402 16.8576 6.40461L20.2326 3.10928C18.1598 1.1826 15.4624 0 12.2336 0C7.55631 0 3.51689 2.68406 1.55035 6.59056L5.41701 9.59359C6.38709 6.7102 9.07115 4.62403 12.2336 4.62403Z" fill="#EB4335"/>
7
- </g>
8
- <defs>
9
- <clipPath id="clip0_114_4184">
10
- <rect width="24" height="24" fill="white"/>
11
- </clipPath>
12
- </defs>
13
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_114_4184)">
3
+ <path d="M23.714 12.2244C23.714 11.2412 23.6342 10.5236 23.4615 9.77954H12.2336V14.2175H18.8241C18.6913 15.3204 17.9738 16.9814 16.3793 18.0975L16.3569 18.246L19.907 20.9962L20.1529 21.0208C22.4118 18.9346 23.714 15.8652 23.714 12.2244Z" fill="#4285F4"/>
4
+ <path d="M12.2336 23.9176C15.4624 23.9176 18.173 22.8545 20.1529 21.0209L16.3792 18.0976C15.3694 18.8018 14.014 19.2934 12.2336 19.2934C9.07115 19.2934 6.38709 17.2074 5.43029 14.324L5.29005 14.3359L1.59863 17.1927L1.55035 17.3269C3.51689 21.2334 7.55631 23.9176 12.2336 23.9176Z" fill="#34A853"/>
5
+ <path d="M5.43029 14.324C5.17783 13.58 5.03173 12.7826 5.03173 11.9589C5.03173 11.135 5.17783 10.3378 5.41701 9.59366L5.41032 9.43519L1.67264 6.53247L1.55035 6.59064C0.739849 8.21174 0.27478 10.0322 0.27478 11.9589C0.27478 13.8855 0.739849 15.7059 1.55035 17.327L5.43029 14.324Z" fill="#FBBC05"/>
6
+ <path d="M12.2336 4.62403C14.4791 4.62403 15.9939 5.59402 16.8576 6.40461L20.2326 3.10928C18.1598 1.1826 15.4624 0 12.2336 0C7.55631 0 3.51689 2.68406 1.55035 6.59056L5.41701 9.59359C6.38709 6.7102 9.07115 4.62403 12.2336 4.62403Z" fill="#EB4335"/>
7
+ </g>
8
+ <defs>
9
+ <clipPath id="clip0_114_4184">
10
+ <rect width="24" height="24" fill="white"/>
11
+ </clipPath>
12
+ </defs>
13
+ </svg>
@@ -1,10 +1,10 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_1767_22966)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M7.725 12.741L14.3733 7.82685C14.6992 7.58518 15.165 7.67935 15.3208 8.05352C16.1375 10.0277 15.7725 12.3993 14.1458 14.0277C12.52 15.656 10.2567 16.0127 8.18833 15.1993L5.92917 16.2468C9.17 18.4643 13.105 17.916 15.5642 15.4527C17.515 13.4993 18.1192 10.8368 17.5542 8.43602L17.5592 8.44185C16.74 4.91518 17.7608 3.50518 19.8508 0.622682C19.9008 0.554349 19.9508 0.486016 20 0.416016L17.2492 3.17018V3.16185L7.7225 12.7427M6.3525 13.9352C4.02583 11.7102 4.4275 8.26768 6.41167 6.28185C7.87917 4.81268 10.2842 4.21268 12.3833 5.09435L14.6375 4.05268C14.169 3.70803 13.6564 3.42776 13.1133 3.21935C11.7482 2.6606 10.2482 2.51801 8.80224 2.80952C7.35623 3.10104 6.02872 3.81363 4.98667 4.85768C2.87583 6.97102 2.21167 10.221 3.35167 12.9943C4.20333 15.0668 2.8075 16.5327 1.40167 18.0127C0.9025 18.5377 0.4025 19.0618 0 19.6168L6.35 13.9377" fill="currentColor"/>
4
- </g>
5
- <defs>
6
- <clipPath id="clip0_1767_22966">
7
- <rect width="20" height="20" fill="currentColor"/>
8
- </clipPath>
9
- </defs>
10
- </svg>
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1767_22966)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.725 12.741L14.3733 7.82685C14.6992 7.58518 15.165 7.67935 15.3208 8.05352C16.1375 10.0277 15.7725 12.3993 14.1458 14.0277C12.52 15.656 10.2567 16.0127 8.18833 15.1993L5.92917 16.2468C9.17 18.4643 13.105 17.916 15.5642 15.4527C17.515 13.4993 18.1192 10.8368 17.5542 8.43602L17.5592 8.44185C16.74 4.91518 17.7608 3.50518 19.8508 0.622682C19.9008 0.554349 19.9508 0.486016 20 0.416016L17.2492 3.17018V3.16185L7.7225 12.7427M6.3525 13.9352C4.02583 11.7102 4.4275 8.26768 6.41167 6.28185C7.87917 4.81268 10.2842 4.21268 12.3833 5.09435L14.6375 4.05268C14.169 3.70803 13.6564 3.42776 13.1133 3.21935C11.7482 2.6606 10.2482 2.51801 8.80224 2.80952C7.35623 3.10104 6.02872 3.81363 4.98667 4.85768C2.87583 6.97102 2.21167 10.221 3.35167 12.9943C4.20333 15.0668 2.8075 16.5327 1.40167 18.0127C0.9025 18.5377 0.4025 19.0618 0 19.6168L6.35 13.9377" fill="currentColor"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_1767_22966">
7
+ <rect width="20" height="20" fill="currentColor"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -1,15 +1,15 @@
1
- <svg width="1000" height="240" viewBox="0 0 1000 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M26.1184 101.6C23.2939 98.7833 23.2939 94.2166 26.1184 91.4L97.7167 20L200 20L77.26 142.4C74.4355 145.217 69.8562 145.217 67.0317 142.4L26.1184 101.6Z" fill="url(#paint0_linear_1_42)"/>
3
- <path d="M155.251 77.375L200 122V224L104.109 128.375L155.251 77.375Z" fill="url(#paint1_linear_1_42)"/>
4
- <path d="M813.788 77.8691C822.77 77.8691 830.293 80.0567 836.358 84.4307C837.617 85.3176 838.812 86.2734 839.945 87.2959V80.4941H858.404V179.525C858.404 181.916 858.288 184.191 858.055 186.349C857.88 188.565 857.559 190.724 857.093 192.823C855.693 198.947 853.01 203.963 849.044 207.87C845.078 211.836 840.149 214.781 834.259 216.706C828.427 218.631 821.953 219.593 814.838 219.593C809.589 219.593 804.544 218.777 799.703 217.144C794.921 215.511 790.605 213.148 786.756 210.057C782.907 207.024 779.757 203.35 777.308 199.034L796.729 189.411C798.536 192.852 801.074 195.389 804.34 197.022C807.664 198.714 811.193 199.559 814.926 199.559C819.3 199.559 823.208 198.772 826.648 197.197C830.089 195.681 832.743 193.406 834.609 190.373C836.534 187.399 837.438 183.666 837.321 179.176V170.212C836.948 170.494 836.569 170.769 836.184 171.039C829.943 175.413 822.216 177.601 813.001 177.601C804.311 177.601 796.729 175.413 790.255 171.039C783.781 166.665 778.766 160.716 775.208 153.192C771.65 145.669 769.871 137.183 769.871 127.735C769.871 118.171 771.65 109.656 775.208 102.19C778.824 94.6669 783.927 88.7465 790.518 84.4307C797.108 80.0566 804.865 77.8692 813.788 77.8691ZM451.808 77.8691C459.156 77.8692 465.659 79.0067 471.316 81.2812C477.032 83.5558 481.639 86.793 485.139 90.9922C488.638 95.1913 490.796 100.119 491.612 105.776L470.092 109.626C469.567 105.602 467.729 102.424 464.58 100.091C461.489 97.7579 457.348 96.4449 452.157 96.1533C447.2 95.8617 443.205 96.6198 440.172 98.4277C437.139 100.177 435.623 102.657 435.623 105.864C435.623 107.672 436.235 109.218 437.46 110.501C438.685 111.784 441.134 113.067 444.809 114.351C448.541 115.634 454.082 117.208 461.431 119.074C468.954 120.999 474.961 123.215 479.452 125.723C484.001 128.172 487.267 131.118 489.25 134.559C491.291 138 492.312 142.17 492.312 147.069C492.312 156.576 488.842 164.041 481.901 169.465C475.019 174.889 465.484 177.601 453.295 177.601C441.63 177.601 432.153 174.977 424.862 169.728C417.572 164.479 413.14 157.1 411.565 147.594L433.086 144.27C434.194 148.935 436.644 152.609 440.435 155.292C444.226 157.975 449.008 159.316 454.782 159.316C459.856 159.316 463.764 158.325 466.505 156.342C469.304 154.301 470.704 151.53 470.704 148.031C470.704 145.873 470.179 144.153 469.129 142.87C468.137 141.529 465.921 140.245 462.48 139.021C459.039 137.796 453.761 136.25 446.646 134.384C438.714 132.284 432.415 130.039 427.749 127.647C423.083 125.198 419.73 122.311 417.688 118.986C415.647 115.662 414.627 111.638 414.627 106.914C414.627 101.024 416.173 95.8908 419.264 91.5166C422.355 87.1426 426.67 83.7889 432.211 81.4561C437.752 79.0648 444.284 77.8691 451.808 77.8691ZM642.225 77.8691C651.731 77.8691 660.013 79.9983 667.07 84.2559C674.127 88.5134 679.609 94.4042 683.517 101.928C687.424 109.393 689.378 117.996 689.378 127.735C689.378 137.533 687.396 146.194 683.43 153.718C679.522 161.183 674.039 167.044 666.982 171.302C659.925 175.501 651.673 177.601 642.225 177.601C632.777 177.601 624.524 175.472 617.467 171.215C610.41 166.957 604.928 161.095 601.021 153.63C597.171 146.106 595.246 137.475 595.246 127.735C595.246 117.821 597.229 109.13 601.195 101.665C605.161 94.1998 610.673 88.3672 617.729 84.168C624.786 79.9689 632.952 77.8692 642.225 77.8691ZM924.667 77.8691C934.465 77.8692 942.776 80.1729 949.6 84.7803C956.482 89.3294 961.585 95.7743 964.909 104.114C968.234 112.454 969.487 122.282 968.671 133.597H900.287C900.995 140.381 902.997 145.834 906.295 149.956C910.494 155.205 916.619 157.829 924.667 157.829C929.857 157.829 934.319 156.692 938.052 154.418C941.843 152.085 944.759 148.731 946.8 144.357L967.621 150.656C964.005 159.171 958.406 165.791 950.824 170.515C943.301 175.239 934.99 177.601 925.892 177.601C916.327 177.601 907.928 175.53 900.696 171.39C893.464 167.249 887.807 161.504 883.725 154.155C879.7 146.807 877.689 138.35 877.688 128.785C877.688 118.462 879.671 109.51 883.637 101.928C887.603 94.2875 893.114 88.3672 900.171 84.168C907.228 79.9688 915.394 77.8691 924.667 77.8691ZM281.084 174.977H260V49H281.084V174.977ZM356.805 77.7822C363.803 77.7822 369.577 78.9485 374.126 81.2812C378.675 83.6141 382.292 86.5891 384.975 90.2051C387.657 93.821 389.64 97.6705 390.923 101.753C392.206 105.835 393.023 109.714 393.373 113.388C393.781 117.004 393.985 119.949 393.985 122.224V174.977H372.639V129.485C372.639 126.511 372.435 123.216 372.026 119.6C371.618 115.984 370.656 112.513 369.14 109.188C367.682 105.806 365.465 103.036 362.491 100.878C359.575 98.72 355.608 97.6406 350.593 97.6406C347.91 97.6407 345.256 98.0783 342.632 98.9531C340.007 99.828 337.617 101.345 335.459 103.503C333.359 105.603 331.668 108.518 330.385 112.251C329.102 115.925 328.46 120.649 328.46 126.423V174.977H307.114V80.4941H325.923V90.9775C328.334 88.1488 331.163 85.7038 334.409 83.6436C340.475 79.7361 347.94 77.7822 356.805 77.7822ZM587.322 70.084H532.558V101.49H576.824V122.486H532.558V174.977H511.474V49H587.322V70.084ZM753.183 80.1445C756.157 79.9113 759.044 80.0276 761.843 80.4941V100.178C759.043 99.3614 755.807 99.0991 752.133 99.3906C748.517 99.6822 745.25 100.702 742.334 102.452C739.418 104.027 737.027 106.04 735.161 108.489C733.353 110.939 732.012 113.738 731.137 116.888C730.262 119.979 729.824 123.332 729.824 126.948V174.977H708.653V80.4941H727.287V95.5869C727.998 94.3174 728.785 93.1061 729.649 91.9541C731.632 89.3297 733.994 87.1718 736.735 85.4805C739.068 83.9059 741.634 82.6815 744.434 81.8066C747.291 80.8735 750.208 80.3195 753.183 80.1445ZM816.938 96.7656C811.28 96.7656 806.615 98.1655 802.94 100.965C799.266 103.706 796.554 107.439 794.805 112.163C793.055 116.829 792.18 122.02 792.18 127.735C792.18 133.509 793.025 138.758 794.717 143.482C796.466 148.148 799.12 151.852 802.678 154.593C806.235 157.334 810.755 158.704 816.237 158.704C821.894 158.704 826.444 157.421 829.885 154.855C833.384 152.231 835.921 148.586 837.496 143.92C839.129 139.254 839.945 133.859 839.945 127.735C839.945 121.553 839.129 116.158 837.496 111.551C835.921 106.885 833.442 103.269 830.06 100.703C826.677 98.0787 822.303 96.7656 816.938 96.7656ZM642.225 97.6406C636.567 97.6407 631.902 98.9241 628.228 101.49C624.612 103.998 621.928 107.526 620.179 112.075C618.429 116.566 617.555 121.786 617.555 127.735C617.555 136.892 619.625 144.211 623.766 149.693C627.965 155.117 634.118 157.829 642.225 157.829C650.623 157.829 656.864 155.03 660.946 149.431C665.029 143.832 667.07 136.6 667.07 127.735C667.07 118.579 664.999 111.288 660.858 105.864C656.718 100.382 650.506 97.6406 642.225 97.6406ZM925.541 96.3281C916.91 96.3282 910.494 99.0114 906.295 104.377C903.597 107.786 901.767 112.219 900.803 117.675H947.27C946.508 111.524 944.865 106.771 942.338 103.415C938.78 98.6909 933.181 96.3281 925.541 96.3281Z" fill="white"/>
5
- <defs>
6
- <linearGradient id="paint0_linear_1_42" x1="22.3955" y1="23.0754" x2="292.628" y2="116.332" gradientUnits="userSpaceOnUse">
7
- <stop stop-color="white"/>
8
- <stop offset="1" stop-color="white" stop-opacity="0.4"/>
9
- </linearGradient>
10
- <linearGradient id="paint1_linear_1_42" x1="309.006" y1="103.841" x2="130.001" y2="103.841" gradientUnits="userSpaceOnUse">
11
- <stop stop-color="white"/>
12
- <stop offset="1" stop-color="white" stop-opacity="0.4"/>
13
- </linearGradient>
14
- </defs>
15
- </svg>
1
+ <svg width="1000" height="240" viewBox="0 0 1000 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M26.1184 101.6C23.2939 98.7833 23.2939 94.2166 26.1184 91.4L97.7167 20L200 20L77.26 142.4C74.4355 145.217 69.8562 145.217 67.0317 142.4L26.1184 101.6Z" fill="url(#paint0_linear_1_42)"/>
3
+ <path d="M155.251 77.375L200 122V224L104.109 128.375L155.251 77.375Z" fill="url(#paint1_linear_1_42)"/>
4
+ <path d="M813.788 77.8691C822.77 77.8691 830.293 80.0567 836.358 84.4307C837.617 85.3176 838.812 86.2734 839.945 87.2959V80.4941H858.404V179.525C858.404 181.916 858.288 184.191 858.055 186.349C857.88 188.565 857.559 190.724 857.093 192.823C855.693 198.947 853.01 203.963 849.044 207.87C845.078 211.836 840.149 214.781 834.259 216.706C828.427 218.631 821.953 219.593 814.838 219.593C809.589 219.593 804.544 218.777 799.703 217.144C794.921 215.511 790.605 213.148 786.756 210.057C782.907 207.024 779.757 203.35 777.308 199.034L796.729 189.411C798.536 192.852 801.074 195.389 804.34 197.022C807.664 198.714 811.193 199.559 814.926 199.559C819.3 199.559 823.208 198.772 826.648 197.197C830.089 195.681 832.743 193.406 834.609 190.373C836.534 187.399 837.438 183.666 837.321 179.176V170.212C836.948 170.494 836.569 170.769 836.184 171.039C829.943 175.413 822.216 177.601 813.001 177.601C804.311 177.601 796.729 175.413 790.255 171.039C783.781 166.665 778.766 160.716 775.208 153.192C771.65 145.669 769.871 137.183 769.871 127.735C769.871 118.171 771.65 109.656 775.208 102.19C778.824 94.6669 783.927 88.7465 790.518 84.4307C797.108 80.0566 804.865 77.8692 813.788 77.8691ZM451.808 77.8691C459.156 77.8692 465.659 79.0067 471.316 81.2812C477.032 83.5558 481.639 86.793 485.139 90.9922C488.638 95.1913 490.796 100.119 491.612 105.776L470.092 109.626C469.567 105.602 467.729 102.424 464.58 100.091C461.489 97.7579 457.348 96.4449 452.157 96.1533C447.2 95.8617 443.205 96.6198 440.172 98.4277C437.139 100.177 435.623 102.657 435.623 105.864C435.623 107.672 436.235 109.218 437.46 110.501C438.685 111.784 441.134 113.067 444.809 114.351C448.541 115.634 454.082 117.208 461.431 119.074C468.954 120.999 474.961 123.215 479.452 125.723C484.001 128.172 487.267 131.118 489.25 134.559C491.291 138 492.312 142.17 492.312 147.069C492.312 156.576 488.842 164.041 481.901 169.465C475.019 174.889 465.484 177.601 453.295 177.601C441.63 177.601 432.153 174.977 424.862 169.728C417.572 164.479 413.14 157.1 411.565 147.594L433.086 144.27C434.194 148.935 436.644 152.609 440.435 155.292C444.226 157.975 449.008 159.316 454.782 159.316C459.856 159.316 463.764 158.325 466.505 156.342C469.304 154.301 470.704 151.53 470.704 148.031C470.704 145.873 470.179 144.153 469.129 142.87C468.137 141.529 465.921 140.245 462.48 139.021C459.039 137.796 453.761 136.25 446.646 134.384C438.714 132.284 432.415 130.039 427.749 127.647C423.083 125.198 419.73 122.311 417.688 118.986C415.647 115.662 414.627 111.638 414.627 106.914C414.627 101.024 416.173 95.8908 419.264 91.5166C422.355 87.1426 426.67 83.7889 432.211 81.4561C437.752 79.0648 444.284 77.8691 451.808 77.8691ZM642.225 77.8691C651.731 77.8691 660.013 79.9983 667.07 84.2559C674.127 88.5134 679.609 94.4042 683.517 101.928C687.424 109.393 689.378 117.996 689.378 127.735C689.378 137.533 687.396 146.194 683.43 153.718C679.522 161.183 674.039 167.044 666.982 171.302C659.925 175.501 651.673 177.601 642.225 177.601C632.777 177.601 624.524 175.472 617.467 171.215C610.41 166.957 604.928 161.095 601.021 153.63C597.171 146.106 595.246 137.475 595.246 127.735C595.246 117.821 597.229 109.13 601.195 101.665C605.161 94.1998 610.673 88.3672 617.729 84.168C624.786 79.9689 632.952 77.8692 642.225 77.8691ZM924.667 77.8691C934.465 77.8692 942.776 80.1729 949.6 84.7803C956.482 89.3294 961.585 95.7743 964.909 104.114C968.234 112.454 969.487 122.282 968.671 133.597H900.287C900.995 140.381 902.997 145.834 906.295 149.956C910.494 155.205 916.619 157.829 924.667 157.829C929.857 157.829 934.319 156.692 938.052 154.418C941.843 152.085 944.759 148.731 946.8 144.357L967.621 150.656C964.005 159.171 958.406 165.791 950.824 170.515C943.301 175.239 934.99 177.601 925.892 177.601C916.327 177.601 907.928 175.53 900.696 171.39C893.464 167.249 887.807 161.504 883.725 154.155C879.7 146.807 877.689 138.35 877.688 128.785C877.688 118.462 879.671 109.51 883.637 101.928C887.603 94.2875 893.114 88.3672 900.171 84.168C907.228 79.9688 915.394 77.8691 924.667 77.8691ZM281.084 174.977H260V49H281.084V174.977ZM356.805 77.7822C363.803 77.7822 369.577 78.9485 374.126 81.2812C378.675 83.6141 382.292 86.5891 384.975 90.2051C387.657 93.821 389.64 97.6705 390.923 101.753C392.206 105.835 393.023 109.714 393.373 113.388C393.781 117.004 393.985 119.949 393.985 122.224V174.977H372.639V129.485C372.639 126.511 372.435 123.216 372.026 119.6C371.618 115.984 370.656 112.513 369.14 109.188C367.682 105.806 365.465 103.036 362.491 100.878C359.575 98.72 355.608 97.6406 350.593 97.6406C347.91 97.6407 345.256 98.0783 342.632 98.9531C340.007 99.828 337.617 101.345 335.459 103.503C333.359 105.603 331.668 108.518 330.385 112.251C329.102 115.925 328.46 120.649 328.46 126.423V174.977H307.114V80.4941H325.923V90.9775C328.334 88.1488 331.163 85.7038 334.409 83.6436C340.475 79.7361 347.94 77.7822 356.805 77.7822ZM587.322 70.084H532.558V101.49H576.824V122.486H532.558V174.977H511.474V49H587.322V70.084ZM753.183 80.1445C756.157 79.9113 759.044 80.0276 761.843 80.4941V100.178C759.043 99.3614 755.807 99.0991 752.133 99.3906C748.517 99.6822 745.25 100.702 742.334 102.452C739.418 104.027 737.027 106.04 735.161 108.489C733.353 110.939 732.012 113.738 731.137 116.888C730.262 119.979 729.824 123.332 729.824 126.948V174.977H708.653V80.4941H727.287V95.5869C727.998 94.3174 728.785 93.1061 729.649 91.9541C731.632 89.3297 733.994 87.1718 736.735 85.4805C739.068 83.9059 741.634 82.6815 744.434 81.8066C747.291 80.8735 750.208 80.3195 753.183 80.1445ZM816.938 96.7656C811.28 96.7656 806.615 98.1655 802.94 100.965C799.266 103.706 796.554 107.439 794.805 112.163C793.055 116.829 792.18 122.02 792.18 127.735C792.18 133.509 793.025 138.758 794.717 143.482C796.466 148.148 799.12 151.852 802.678 154.593C806.235 157.334 810.755 158.704 816.237 158.704C821.894 158.704 826.444 157.421 829.885 154.855C833.384 152.231 835.921 148.586 837.496 143.92C839.129 139.254 839.945 133.859 839.945 127.735C839.945 121.553 839.129 116.158 837.496 111.551C835.921 106.885 833.442 103.269 830.06 100.703C826.677 98.0787 822.303 96.7656 816.938 96.7656ZM642.225 97.6406C636.567 97.6407 631.902 98.9241 628.228 101.49C624.612 103.998 621.928 107.526 620.179 112.075C618.429 116.566 617.555 121.786 617.555 127.735C617.555 136.892 619.625 144.211 623.766 149.693C627.965 155.117 634.118 157.829 642.225 157.829C650.623 157.829 656.864 155.03 660.946 149.431C665.029 143.832 667.07 136.6 667.07 127.735C667.07 118.579 664.999 111.288 660.858 105.864C656.718 100.382 650.506 97.6406 642.225 97.6406ZM925.541 96.3281C916.91 96.3282 910.494 99.0114 906.295 104.377C903.597 107.786 901.767 112.219 900.803 117.675H947.27C946.508 111.524 944.865 106.771 942.338 103.415C938.78 98.6909 933.181 96.3281 925.541 96.3281Z" fill="white"/>
5
+ <defs>
6
+ <linearGradient id="paint0_linear_1_42" x1="22.3955" y1="23.0754" x2="292.628" y2="116.332" gradientUnits="userSpaceOnUse">
7
+ <stop stop-color="white"/>
8
+ <stop offset="1" stop-color="white" stop-opacity="0.4"/>
9
+ </linearGradient>
10
+ <linearGradient id="paint1_linear_1_42" x1="309.006" y1="103.841" x2="130.001" y2="103.841" gradientUnits="userSpaceOnUse">
11
+ <stop stop-color="white"/>
12
+ <stop offset="1" stop-color="white" stop-opacity="0.4"/>
13
+ </linearGradient>
14
+ </defs>
15
+ </svg>
@@ -1,15 +1,15 @@
1
- <svg width="1000" height="240" viewBox="0 0 1000 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M26.1184 101.6C23.2939 98.7833 23.2939 94.2166 26.1184 91.4L97.7167 20L200 20L77.26 142.4C74.4355 145.217 69.8562 145.217 67.0317 142.4L26.1184 101.6Z" fill="url(#paint0_linear_1_48)"/>
3
- <path d="M155.251 77.375L200 122V224L104.109 128.375L155.251 77.375Z" fill="url(#paint1_linear_1_48)"/>
4
- <path d="M813.788 77.8701C822.77 77.8701 830.293 80.0567 836.358 84.4307C837.617 85.3176 838.812 86.2734 839.945 87.2959V80.4941H858.404V179.525C858.404 181.916 858.288 184.191 858.055 186.349C857.88 188.565 857.559 190.724 857.093 192.823C855.693 198.947 853.01 203.963 849.044 207.87C845.078 211.836 840.149 214.781 834.259 216.706C828.427 218.631 821.953 219.593 814.838 219.593C809.589 219.593 804.544 218.777 799.703 217.144C794.921 215.511 790.605 213.148 786.756 210.057C782.907 207.024 779.757 203.35 777.308 199.034L796.729 189.411C798.536 192.852 801.074 195.389 804.34 197.022C807.664 198.714 811.193 199.56 814.926 199.56C819.3 199.56 823.208 198.772 826.648 197.197C830.089 195.681 832.743 193.406 834.609 190.373C836.534 187.399 837.438 183.666 837.321 179.176V170.212C836.948 170.494 836.569 170.769 836.184 171.039C829.943 175.413 822.216 177.601 813.001 177.601C804.311 177.601 796.729 175.413 790.255 171.039C783.781 166.665 778.766 160.717 775.208 153.193C771.65 145.67 769.871 137.184 769.871 127.735C769.871 118.171 771.65 109.656 775.208 102.19C778.824 94.6669 783.927 88.7465 790.518 84.4307C797.108 80.0566 804.865 77.8701 813.788 77.8701ZM451.808 77.8701C459.156 77.8701 465.659 79.0067 471.316 81.2812C477.032 83.5558 481.639 86.793 485.139 90.9922C488.638 95.1913 490.796 100.119 491.612 105.776L470.092 109.626C469.567 105.602 467.729 102.424 464.58 100.091C461.489 97.7579 457.348 96.4449 452.157 96.1533C447.2 95.8617 443.205 96.6207 440.172 98.4287C437.139 100.178 435.623 102.657 435.623 105.864C435.623 107.672 436.235 109.218 437.46 110.501C438.685 111.784 441.134 113.067 444.809 114.351C448.541 115.634 454.082 117.208 461.431 119.074C468.954 120.999 474.961 123.215 479.452 125.723C484.001 128.172 487.267 131.118 489.25 134.559C491.291 138 492.312 142.17 492.312 147.069C492.312 156.576 488.842 164.041 481.901 169.465C475.019 174.889 465.484 177.601 453.295 177.601C441.63 177.601 432.153 174.977 424.862 169.728C417.572 164.479 413.14 157.1 411.565 147.594L433.086 144.27C434.194 148.935 436.644 152.609 440.435 155.292C444.226 157.975 449.008 159.316 454.782 159.316C459.856 159.316 463.764 158.325 466.505 156.342C469.304 154.301 470.704 151.53 470.704 148.031C470.704 145.873 470.179 144.153 469.129 142.87C468.137 141.529 465.921 140.245 462.48 139.021C459.039 137.796 453.761 136.25 446.646 134.384C438.714 132.284 432.415 130.039 427.749 127.647C423.084 125.198 419.73 122.312 417.688 118.987C415.647 115.663 414.627 111.638 414.627 106.914C414.627 101.024 416.173 95.8908 419.264 91.5166C422.355 87.1426 426.67 83.7889 432.211 81.4561C437.752 79.0648 444.284 77.8701 451.808 77.8701ZM642.225 77.8701C651.731 77.8701 660.013 79.9983 667.07 84.2559C674.127 88.5134 679.609 94.4042 683.517 101.928C687.424 109.393 689.378 117.996 689.378 127.735C689.378 137.533 687.396 146.194 683.43 153.718C679.522 161.183 674.039 167.044 666.982 171.302C659.925 175.501 651.673 177.601 642.225 177.601C632.776 177.601 624.524 175.472 617.467 171.215C610.41 166.957 604.928 161.095 601.021 153.63C597.171 146.106 595.246 137.475 595.246 127.735C595.246 117.821 597.229 109.13 601.195 101.665C605.161 94.1999 610.673 88.3671 617.729 84.168C624.786 79.9689 632.952 77.8702 642.225 77.8701ZM924.667 77.8701C934.465 77.8702 942.776 80.1738 949.6 84.7812C956.481 89.3303 961.585 95.7744 964.909 104.114C968.234 112.454 969.487 122.282 968.671 133.597H900.287C900.995 140.381 902.997 145.834 906.295 149.956C910.494 155.205 916.619 157.829 924.667 157.829C929.857 157.829 934.319 156.692 938.052 154.418C941.843 152.085 944.759 148.731 946.8 144.357L967.621 150.656C964.005 159.171 958.406 165.791 950.824 170.515C943.301 175.239 934.99 177.601 925.892 177.601C916.327 177.601 907.928 175.53 900.696 171.39C893.464 167.249 887.807 161.504 883.725 154.155C879.7 146.807 877.688 138.35 877.688 128.785C877.688 118.462 879.671 109.51 883.637 101.928C887.603 94.2875 893.114 88.3672 900.171 84.168C907.228 79.9688 915.394 77.8701 924.667 77.8701ZM281.084 174.977H260V49H281.084V174.977ZM356.805 77.7822C363.803 77.7822 369.577 78.9485 374.126 81.2812C378.675 83.6141 382.292 86.5891 384.975 90.2051C387.657 93.821 389.64 97.6705 390.923 101.753C392.206 105.835 393.023 109.714 393.373 113.388C393.781 117.004 393.985 119.949 393.985 122.224V174.977H372.639V129.485C372.639 126.511 372.435 123.216 372.026 119.6C371.618 115.984 370.656 112.513 369.14 109.188C367.682 105.806 365.465 103.036 362.491 100.878C359.575 98.72 355.608 97.6406 350.593 97.6406C347.91 97.6407 345.256 98.0783 342.632 98.9531C340.007 99.828 337.617 101.345 335.459 103.503C333.359 105.603 331.668 108.518 330.385 112.251C329.102 115.925 328.46 120.649 328.46 126.423V174.977H307.114V80.4941H325.923V90.9775C328.334 88.1488 331.163 85.7038 334.409 83.6436C340.475 79.7361 347.94 77.7822 356.805 77.7822ZM587.322 70.084H532.558V101.49H576.824V122.486H532.558V174.977H511.474V49H587.322V70.084ZM753.183 80.1445C756.157 79.9113 759.044 80.0276 761.843 80.4941V100.178C759.043 99.3614 755.807 99.0991 752.133 99.3906C748.517 99.6822 745.25 100.702 742.334 102.452C739.418 104.027 737.027 106.04 735.161 108.489C733.353 110.939 732.012 113.738 731.137 116.888C730.262 119.979 729.824 123.332 729.824 126.948V174.977H708.653V80.4941H727.287V95.5869C727.998 94.3174 728.785 93.1061 729.649 91.9541C731.632 89.3297 733.994 87.1718 736.735 85.4805C739.068 83.9059 741.634 82.6815 744.434 81.8066C747.291 80.8735 750.208 80.3195 753.183 80.1445ZM816.938 96.7656C811.28 96.7656 806.615 98.1656 802.94 100.965C799.266 103.706 796.554 107.439 794.805 112.163C793.055 116.829 792.18 122.02 792.18 127.735C792.18 133.509 793.025 138.758 794.717 143.482C796.466 148.148 799.12 151.852 802.678 154.593C806.235 157.334 810.755 158.704 816.237 158.704C821.894 158.704 826.444 157.421 829.885 154.855C833.384 152.231 835.921 148.586 837.496 143.92C839.129 139.254 839.945 133.859 839.945 127.735C839.945 121.553 839.129 116.158 837.496 111.551C835.921 106.885 833.442 103.269 830.06 100.703C826.677 98.0787 822.303 96.7656 816.938 96.7656ZM642.225 97.6406C636.567 97.6407 631.902 98.9241 628.228 101.49C624.612 103.998 621.928 107.526 620.179 112.075C618.429 116.566 617.555 121.786 617.555 127.735C617.555 136.892 619.625 144.211 623.766 149.693C627.965 155.117 634.118 157.829 642.225 157.829C650.623 157.829 656.864 155.03 660.946 149.431C665.029 143.832 667.07 136.6 667.07 127.735C667.07 118.579 664.999 111.288 660.858 105.864C656.718 100.382 650.506 97.6406 642.225 97.6406ZM925.541 96.3291C916.91 96.3292 910.494 99.0114 906.295 104.377C903.597 107.786 901.767 112.219 900.803 117.675H947.27C946.508 111.524 944.865 106.771 942.338 103.415C938.78 98.6909 933.181 96.3291 925.541 96.3291Z" fill="black"/>
5
- <defs>
6
- <linearGradient id="paint0_linear_1_48" x1="22.3955" y1="23.0754" x2="292.628" y2="116.332" gradientUnits="userSpaceOnUse">
7
- <stop/>
8
- <stop offset="1" stop-opacity="0.4"/>
9
- </linearGradient>
10
- <linearGradient id="paint1_linear_1_48" x1="309.006" y1="103.841" x2="130.001" y2="103.841" gradientUnits="userSpaceOnUse">
11
- <stop/>
12
- <stop offset="1" stop-opacity="0.4"/>
13
- </linearGradient>
14
- </defs>
15
- </svg>
1
+ <svg width="1000" height="240" viewBox="0 0 1000 240" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M26.1184 101.6C23.2939 98.7833 23.2939 94.2166 26.1184 91.4L97.7167 20L200 20L77.26 142.4C74.4355 145.217 69.8562 145.217 67.0317 142.4L26.1184 101.6Z" fill="url(#paint0_linear_1_48)"/>
3
+ <path d="M155.251 77.375L200 122V224L104.109 128.375L155.251 77.375Z" fill="url(#paint1_linear_1_48)"/>
4
+ <path d="M813.788 77.8701C822.77 77.8701 830.293 80.0567 836.358 84.4307C837.617 85.3176 838.812 86.2734 839.945 87.2959V80.4941H858.404V179.525C858.404 181.916 858.288 184.191 858.055 186.349C857.88 188.565 857.559 190.724 857.093 192.823C855.693 198.947 853.01 203.963 849.044 207.87C845.078 211.836 840.149 214.781 834.259 216.706C828.427 218.631 821.953 219.593 814.838 219.593C809.589 219.593 804.544 218.777 799.703 217.144C794.921 215.511 790.605 213.148 786.756 210.057C782.907 207.024 779.757 203.35 777.308 199.034L796.729 189.411C798.536 192.852 801.074 195.389 804.34 197.022C807.664 198.714 811.193 199.56 814.926 199.56C819.3 199.56 823.208 198.772 826.648 197.197C830.089 195.681 832.743 193.406 834.609 190.373C836.534 187.399 837.438 183.666 837.321 179.176V170.212C836.948 170.494 836.569 170.769 836.184 171.039C829.943 175.413 822.216 177.601 813.001 177.601C804.311 177.601 796.729 175.413 790.255 171.039C783.781 166.665 778.766 160.717 775.208 153.193C771.65 145.67 769.871 137.184 769.871 127.735C769.871 118.171 771.65 109.656 775.208 102.19C778.824 94.6669 783.927 88.7465 790.518 84.4307C797.108 80.0566 804.865 77.8701 813.788 77.8701ZM451.808 77.8701C459.156 77.8701 465.659 79.0067 471.316 81.2812C477.032 83.5558 481.639 86.793 485.139 90.9922C488.638 95.1913 490.796 100.119 491.612 105.776L470.092 109.626C469.567 105.602 467.729 102.424 464.58 100.091C461.489 97.7579 457.348 96.4449 452.157 96.1533C447.2 95.8617 443.205 96.6207 440.172 98.4287C437.139 100.178 435.623 102.657 435.623 105.864C435.623 107.672 436.235 109.218 437.46 110.501C438.685 111.784 441.134 113.067 444.809 114.351C448.541 115.634 454.082 117.208 461.431 119.074C468.954 120.999 474.961 123.215 479.452 125.723C484.001 128.172 487.267 131.118 489.25 134.559C491.291 138 492.312 142.17 492.312 147.069C492.312 156.576 488.842 164.041 481.901 169.465C475.019 174.889 465.484 177.601 453.295 177.601C441.63 177.601 432.153 174.977 424.862 169.728C417.572 164.479 413.14 157.1 411.565 147.594L433.086 144.27C434.194 148.935 436.644 152.609 440.435 155.292C444.226 157.975 449.008 159.316 454.782 159.316C459.856 159.316 463.764 158.325 466.505 156.342C469.304 154.301 470.704 151.53 470.704 148.031C470.704 145.873 470.179 144.153 469.129 142.87C468.137 141.529 465.921 140.245 462.48 139.021C459.039 137.796 453.761 136.25 446.646 134.384C438.714 132.284 432.415 130.039 427.749 127.647C423.084 125.198 419.73 122.312 417.688 118.987C415.647 115.663 414.627 111.638 414.627 106.914C414.627 101.024 416.173 95.8908 419.264 91.5166C422.355 87.1426 426.67 83.7889 432.211 81.4561C437.752 79.0648 444.284 77.8701 451.808 77.8701ZM642.225 77.8701C651.731 77.8701 660.013 79.9983 667.07 84.2559C674.127 88.5134 679.609 94.4042 683.517 101.928C687.424 109.393 689.378 117.996 689.378 127.735C689.378 137.533 687.396 146.194 683.43 153.718C679.522 161.183 674.039 167.044 666.982 171.302C659.925 175.501 651.673 177.601 642.225 177.601C632.776 177.601 624.524 175.472 617.467 171.215C610.41 166.957 604.928 161.095 601.021 153.63C597.171 146.106 595.246 137.475 595.246 127.735C595.246 117.821 597.229 109.13 601.195 101.665C605.161 94.1999 610.673 88.3671 617.729 84.168C624.786 79.9689 632.952 77.8702 642.225 77.8701ZM924.667 77.8701C934.465 77.8702 942.776 80.1738 949.6 84.7812C956.481 89.3303 961.585 95.7744 964.909 104.114C968.234 112.454 969.487 122.282 968.671 133.597H900.287C900.995 140.381 902.997 145.834 906.295 149.956C910.494 155.205 916.619 157.829 924.667 157.829C929.857 157.829 934.319 156.692 938.052 154.418C941.843 152.085 944.759 148.731 946.8 144.357L967.621 150.656C964.005 159.171 958.406 165.791 950.824 170.515C943.301 175.239 934.99 177.601 925.892 177.601C916.327 177.601 907.928 175.53 900.696 171.39C893.464 167.249 887.807 161.504 883.725 154.155C879.7 146.807 877.688 138.35 877.688 128.785C877.688 118.462 879.671 109.51 883.637 101.928C887.603 94.2875 893.114 88.3672 900.171 84.168C907.228 79.9688 915.394 77.8701 924.667 77.8701ZM281.084 174.977H260V49H281.084V174.977ZM356.805 77.7822C363.803 77.7822 369.577 78.9485 374.126 81.2812C378.675 83.6141 382.292 86.5891 384.975 90.2051C387.657 93.821 389.64 97.6705 390.923 101.753C392.206 105.835 393.023 109.714 393.373 113.388C393.781 117.004 393.985 119.949 393.985 122.224V174.977H372.639V129.485C372.639 126.511 372.435 123.216 372.026 119.6C371.618 115.984 370.656 112.513 369.14 109.188C367.682 105.806 365.465 103.036 362.491 100.878C359.575 98.72 355.608 97.6406 350.593 97.6406C347.91 97.6407 345.256 98.0783 342.632 98.9531C340.007 99.828 337.617 101.345 335.459 103.503C333.359 105.603 331.668 108.518 330.385 112.251C329.102 115.925 328.46 120.649 328.46 126.423V174.977H307.114V80.4941H325.923V90.9775C328.334 88.1488 331.163 85.7038 334.409 83.6436C340.475 79.7361 347.94 77.7822 356.805 77.7822ZM587.322 70.084H532.558V101.49H576.824V122.486H532.558V174.977H511.474V49H587.322V70.084ZM753.183 80.1445C756.157 79.9113 759.044 80.0276 761.843 80.4941V100.178C759.043 99.3614 755.807 99.0991 752.133 99.3906C748.517 99.6822 745.25 100.702 742.334 102.452C739.418 104.027 737.027 106.04 735.161 108.489C733.353 110.939 732.012 113.738 731.137 116.888C730.262 119.979 729.824 123.332 729.824 126.948V174.977H708.653V80.4941H727.287V95.5869C727.998 94.3174 728.785 93.1061 729.649 91.9541C731.632 89.3297 733.994 87.1718 736.735 85.4805C739.068 83.9059 741.634 82.6815 744.434 81.8066C747.291 80.8735 750.208 80.3195 753.183 80.1445ZM816.938 96.7656C811.28 96.7656 806.615 98.1656 802.94 100.965C799.266 103.706 796.554 107.439 794.805 112.163C793.055 116.829 792.18 122.02 792.18 127.735C792.18 133.509 793.025 138.758 794.717 143.482C796.466 148.148 799.12 151.852 802.678 154.593C806.235 157.334 810.755 158.704 816.237 158.704C821.894 158.704 826.444 157.421 829.885 154.855C833.384 152.231 835.921 148.586 837.496 143.92C839.129 139.254 839.945 133.859 839.945 127.735C839.945 121.553 839.129 116.158 837.496 111.551C835.921 106.885 833.442 103.269 830.06 100.703C826.677 98.0787 822.303 96.7656 816.938 96.7656ZM642.225 97.6406C636.567 97.6407 631.902 98.9241 628.228 101.49C624.612 103.998 621.928 107.526 620.179 112.075C618.429 116.566 617.555 121.786 617.555 127.735C617.555 136.892 619.625 144.211 623.766 149.693C627.965 155.117 634.118 157.829 642.225 157.829C650.623 157.829 656.864 155.03 660.946 149.431C665.029 143.832 667.07 136.6 667.07 127.735C667.07 118.579 664.999 111.288 660.858 105.864C656.718 100.382 650.506 97.6406 642.225 97.6406ZM925.541 96.3291C916.91 96.3292 910.494 99.0114 906.295 104.377C903.597 107.786 901.767 112.219 900.803 117.675H947.27C946.508 111.524 944.865 106.771 942.338 103.415C938.78 98.6909 933.181 96.3291 925.541 96.3291Z" fill="black"/>
5
+ <defs>
6
+ <linearGradient id="paint0_linear_1_48" x1="22.3955" y1="23.0754" x2="292.628" y2="116.332" gradientUnits="userSpaceOnUse">
7
+ <stop/>
8
+ <stop offset="1" stop-opacity="0.4"/>
9
+ </linearGradient>
10
+ <linearGradient id="paint1_linear_1_48" x1="309.006" y1="103.841" x2="130.001" y2="103.841" gradientUnits="userSpaceOnUse">
11
+ <stop/>
12
+ <stop offset="1" stop-opacity="0.4"/>
13
+ </linearGradient>
14
+ </defs>
15
+ </svg>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
2
+ <svg width="800px" height="800px" viewBox="0 0 2500 2500" xmlns="http://www.w3.org/2000/svg"><defs><radialGradient id="0" cx="332.14" cy="2511.81" r="3263.54" gradientUnits="userSpaceOnUse"><stop offset=".09" stop-color="#fa8f21"/><stop offset=".78" stop-color="#d82d7e"/></radialGradient><radialGradient id="1" cx="1516.14" cy="2623.81" r="2572.12" gradientUnits="userSpaceOnUse"><stop offset=".64" stop-color="#8c3aaa" stop-opacity="0"/><stop offset="1" stop-color="#8c3aaa"/></radialGradient></defs><path d="M833.4,1250c0-230.11,186.49-416.7,416.6-416.7s416.7,186.59,416.7,416.7-186.59,416.7-416.7,416.7S833.4,1480.11,833.4,1250m-225.26,0c0,354.5,287.36,641.86,641.86,641.86S1891.86,1604.5,1891.86,1250,1604.5,608.14,1250,608.14,608.14,895.5,608.14,1250M1767.27,582.69a150,150,0,1,0,150.06-149.94h-0.06a150.07,150.07,0,0,0-150,149.94M745,2267.47c-121.87-5.55-188.11-25.85-232.13-43-58.36-22.72-100-49.78-143.78-93.5s-70.88-85.32-93.5-143.68c-17.16-44-37.46-110.26-43-232.13-6.06-131.76-7.27-171.34-7.27-505.15s1.31-373.28,7.27-505.15c5.55-121.87,26-188,43-232.13,22.72-58.36,49.78-100,93.5-143.78s85.32-70.88,143.78-93.5c44-17.16,110.26-37.46,232.13-43,131.76-6.06,171.34-7.27,505-7.27s373.28,1.31,505.15,7.27c121.87,5.55,188,26,232.13,43,58.36,22.62,100,49.78,143.78,93.5s70.78,85.42,93.5,143.78c17.16,44,37.46,110.26,43,232.13,6.06,131.87,7.27,171.34,7.27,505.15s-1.21,373.28-7.27,505.15c-5.55,121.87-25.95,188.11-43,232.13-22.72,58.36-49.78,100-93.5,143.68s-85.42,70.78-143.78,93.5c-44,17.16-110.26,37.46-232.13,43-131.76,6.06-171.34,7.27-505.15,7.27s-373.28-1.21-505-7.27M734.65,7.57c-133.07,6.06-224,27.16-303.41,58.06C349,97.54,279.38,140.35,209.81,209.81S97.54,349,65.63,431.24c-30.9,79.46-52,170.34-58.06,303.41C1.41,867.93,0,910.54,0,1250s1.41,382.07,7.57,515.35c6.06,133.08,27.16,223.95,58.06,303.41,31.91,82.19,74.62,152,144.18,221.43S349,2402.37,431.24,2434.37c79.56,30.9,170.34,52,303.41,58.06C868,2498.49,910.54,2500,1250,2500s382.07-1.41,515.35-7.57c133.08-6.06,223.95-27.16,303.41-58.06,82.19-32,151.86-74.72,221.43-144.18s112.18-139.24,144.18-221.43c30.9-79.46,52.1-170.34,58.06-303.41,6.06-133.38,7.47-175.89,7.47-515.35s-1.41-382.07-7.47-515.35c-6.06-133.08-27.16-224-58.06-303.41-32-82.19-74.72-151.86-144.18-221.43S2150.95,97.54,2068.86,65.63c-79.56-30.9-170.44-52.1-303.41-58.06C1632.17,1.51,1589.56,0,1250.1,0S868,1.41,734.65,7.57" fill="url(#0)"/><path d="M833.4,1250c0-230.11,186.49-416.7,416.6-416.7s416.7,186.59,416.7,416.7-186.59,416.7-416.7,416.7S833.4,1480.11,833.4,1250m-225.26,0c0,354.5,287.36,641.86,641.86,641.86S1891.86,1604.5,1891.86,1250,1604.5,608.14,1250,608.14,608.14,895.5,608.14,1250M1767.27,582.69a150,150,0,1,0,150.06-149.94h-0.06a150.07,150.07,0,0,0-150,149.94M745,2267.47c-121.87-5.55-188.11-25.85-232.13-43-58.36-22.72-100-49.78-143.78-93.5s-70.88-85.32-93.5-143.68c-17.16-44-37.46-110.26-43-232.13-6.06-131.76-7.27-171.34-7.27-505.15s1.31-373.28,7.27-505.15c5.55-121.87,26-188,43-232.13,22.72-58.36,49.78-100,93.5-143.78s85.32-70.88,143.78-93.5c44-17.16,110.26-37.46,232.13-43,131.76-6.06,171.34-7.27,505-7.27s373.28,1.31,505.15,7.27c121.87,5.55,188,26,232.13,43,58.36,22.62,100,49.78,143.78,93.5s70.78,85.42,93.5,143.78c17.16,44,37.46,110.26,43,232.13,6.06,131.87,7.27,171.34,7.27,505.15s-1.21,373.28-7.27,505.15c-5.55,121.87-25.95,188.11-43,232.13-22.72,58.36-49.78,100-93.5,143.68s-85.42,70.78-143.78,93.5c-44,17.16-110.26,37.46-232.13,43-131.76,6.06-171.34,7.27-505.15,7.27s-373.28-1.21-505-7.27M734.65,7.57c-133.07,6.06-224,27.16-303.41,58.06C349,97.54,279.38,140.35,209.81,209.81S97.54,349,65.63,431.24c-30.9,79.46-52,170.34-58.06,303.41C1.41,867.93,0,910.54,0,1250s1.41,382.07,7.57,515.35c6.06,133.08,27.16,223.95,58.06,303.41,31.91,82.19,74.62,152,144.18,221.43S349,2402.37,431.24,2434.37c79.56,30.9,170.34,52,303.41,58.06C868,2498.49,910.54,2500,1250,2500s382.07-1.41,515.35-7.57c133.08-6.06,223.95-27.16,303.41-58.06,82.19-32,151.86-74.72,221.43-144.18s112.18-139.24,144.18-221.43c30.9-79.46,52.1-170.34,58.06-303.41,6.06-133.38,7.47-175.89,7.47-515.35s-1.41-382.07-7.47-515.35c-6.06-133.08-27.16-224-58.06-303.41-32-82.19-74.72-151.86-144.18-221.43S2150.95,97.54,2068.86,65.63c-79.56-30.9-170.44-52.1-303.41-58.06C1632.17,1.51,1589.56,0,1250.1,0S868,1.41,734.65,7.57" fill="url(#1)"/></svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#0A66C2">
2
+ <path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
3
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23"><path fill="#f3f3f3" d="M0 0h23v23H0z"/><path fill="#f35325" d="M1 1h10v10H1z"/><path fill="#81bc06" d="M12 1h10v10H12z"/><path fill="#05a6f0" d="M1 12h10v10H1z"/><path fill="#ffba08" d="M12 12h10v10H12z"/></svg>
@@ -1,10 +1,10 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_1767_22960)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M17.9583 8.33745C18.1664 7.72052 18.2385 7.06587 18.1698 6.41843C18.101 5.77099 17.893 5.14609 17.56 4.58662C16.5458 2.84495 14.5083 1.94829 12.5183 2.36995C12.0776 1.88195 11.5385 1.4928 10.9365 1.22809C10.3346 0.963375 9.68341 0.829109 9.02584 0.83412C6.99167 0.829953 5.18667 2.12245 4.56084 4.03245C3.91755 4.16123 3.309 4.42531 2.77554 4.80719C2.24209 5.18907 1.79594 5.68001 1.46667 6.24745C0.968989 7.09267 0.756288 8.07553 0.859976 9.05089C0.963665 10.0263 1.37825 10.9424 2.04251 11.6641C1.83418 12.2811 1.76184 12.9359 1.83046 13.5835C1.89907 14.2311 2.10701 14.8561 2.44001 15.4158C3.45417 17.1575 5.49167 18.0533 7.48167 17.6325C7.92228 18.1204 8.46125 18.5094 9.06307 18.774C9.6649 19.0386 10.3159 19.1727 10.9733 19.1675C13.0092 19.1725 14.815 17.8791 15.4408 15.9675C16.0846 15.8387 16.6935 15.5745 17.2273 15.1923C17.7611 14.8101 18.2074 14.3187 18.5367 13.7508C19.0334 12.9056 19.2454 11.9232 19.1414 10.9484C19.0375 9.97359 18.623 9.05799 17.9592 8.33662L17.9583 8.33745ZM10.9742 17.9691C10.1613 17.9711 9.37317 17.69 8.74501 17.1741C8.77334 17.1591 8.82251 17.1325 8.85501 17.1125L12.555 15.0041C12.6473 14.9526 12.7242 14.8772 12.7775 14.7859C12.8309 14.6946 12.8588 14.5907 12.8583 14.485V9.33829L14.4225 10.2291C14.4392 10.2375 14.45 10.2533 14.4525 10.2708V14.5333C14.45 16.4283 12.8942 17.965 10.9742 17.9691ZM3.49334 14.8175C3.08553 14.1238 2.93839 13.3074 3.07834 12.515C3.10501 12.5316 3.15334 12.5608 3.18751 12.58L6.88751 14.6883C7.07501 14.7966 7.30751 14.7966 7.49584 14.6883L12.0125 12.115V13.8966C12.0129 13.9058 12.011 13.9149 12.0071 13.9231C12.0032 13.9314 11.9973 13.9386 11.99 13.9441L8.25001 16.0741C6.58417 17.0208 4.45667 16.4575 3.49417 14.8158L3.49334 14.8175ZM2.51917 6.84745C2.92858 6.14912 3.56999 5.61653 4.33167 5.34245L4.33001 5.46829V9.68495C4.3295 9.79082 4.35737 9.8949 4.41071 9.98635C4.46406 10.0778 4.54093 10.1533 4.63334 10.205L9.15001 12.7775L7.58667 13.6691C7.57894 13.6741 7.5701 13.6771 7.56095 13.6778C7.55179 13.6785 7.54259 13.677 7.53417 13.6733L3.79334 11.5408C2.13084 10.5908 1.56084 8.49245 2.51834 6.84912L2.51917 6.84745ZM15.3667 9.79745L10.85 7.22412L12.4133 6.33412C12.421 6.32902 12.4298 6.3259 12.439 6.32503C12.4481 6.32416 12.4574 6.32556 12.4658 6.32912L16.2067 8.45995C17.8717 9.40995 18.4425 11.5116 17.4808 13.1541C17.0711 13.852 16.4302 14.3847 15.6692 14.66V10.3175C15.6697 10.2118 15.6419 10.1079 15.5887 10.0166C15.5355 9.92531 15.4589 9.84993 15.3667 9.79829V9.79745ZM16.9225 7.48662C16.8861 7.46449 16.8494 7.44282 16.8125 7.42162L13.1125 5.31329C13.0201 5.26013 12.9154 5.23215 12.8088 5.23215C12.7022 5.23215 12.5974 5.26013 12.505 5.31329L7.98834 7.88662V6.10495C7.98798 6.09581 7.98983 6.08671 7.99375 6.07844C7.99767 6.07016 8.00353 6.06296 8.01084 6.05745L11.75 3.92829C13.4167 2.98079 15.5458 3.54495 16.5058 5.18912C16.9117 5.88329 17.06 6.69662 16.9225 7.48662ZM7.13834 10.6616L5.57417 9.77162C5.56601 9.76762 5.55898 9.76163 5.55374 9.75421C5.54849 9.74678 5.54521 9.73815 5.54417 9.72912V5.46662C5.54501 3.56912 7.10501 2.03162 9.02834 2.03329C9.84167 2.03329 10.6283 2.31495 11.2542 2.82829C11.2258 2.84329 11.1775 2.86995 11.145 2.88912L7.44501 4.99745C7.35251 5.04888 7.2755 5.12417 7.222 5.21548C7.1685 5.3068 7.14047 5.41079 7.14084 5.51662L7.13834 10.6608V10.6616ZM7.98834 8.85495L10 7.70912L12.0117 8.85495V11.1466L10 12.2925L7.98751 11.1466V8.85495H7.98834Z" fill="currentColor"/>
4
- </g>
5
- <defs>
6
- <clipPath id="clip0_1767_22960">
7
- <rect width="20" height="20" fill="currentColor"/>
8
- </clipPath>
9
- </defs>
10
- </svg>
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1767_22960)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M17.9583 8.33745C18.1664 7.72052 18.2385 7.06587 18.1698 6.41843C18.101 5.77099 17.893 5.14609 17.56 4.58662C16.5458 2.84495 14.5083 1.94829 12.5183 2.36995C12.0776 1.88195 11.5385 1.4928 10.9365 1.22809C10.3346 0.963375 9.68341 0.829109 9.02584 0.83412C6.99167 0.829953 5.18667 2.12245 4.56084 4.03245C3.91755 4.16123 3.309 4.42531 2.77554 4.80719C2.24209 5.18907 1.79594 5.68001 1.46667 6.24745C0.968989 7.09267 0.756288 8.07553 0.859976 9.05089C0.963665 10.0263 1.37825 10.9424 2.04251 11.6641C1.83418 12.2811 1.76184 12.9359 1.83046 13.5835C1.89907 14.2311 2.10701 14.8561 2.44001 15.4158C3.45417 17.1575 5.49167 18.0533 7.48167 17.6325C7.92228 18.1204 8.46125 18.5094 9.06307 18.774C9.6649 19.0386 10.3159 19.1727 10.9733 19.1675C13.0092 19.1725 14.815 17.8791 15.4408 15.9675C16.0846 15.8387 16.6935 15.5745 17.2273 15.1923C17.7611 14.8101 18.2074 14.3187 18.5367 13.7508C19.0334 12.9056 19.2454 11.9232 19.1414 10.9484C19.0375 9.97359 18.623 9.05799 17.9592 8.33662L17.9583 8.33745ZM10.9742 17.9691C10.1613 17.9711 9.37317 17.69 8.74501 17.1741C8.77334 17.1591 8.82251 17.1325 8.85501 17.1125L12.555 15.0041C12.6473 14.9526 12.7242 14.8772 12.7775 14.7859C12.8309 14.6946 12.8588 14.5907 12.8583 14.485V9.33829L14.4225 10.2291C14.4392 10.2375 14.45 10.2533 14.4525 10.2708V14.5333C14.45 16.4283 12.8942 17.965 10.9742 17.9691ZM3.49334 14.8175C3.08553 14.1238 2.93839 13.3074 3.07834 12.515C3.10501 12.5316 3.15334 12.5608 3.18751 12.58L6.88751 14.6883C7.07501 14.7966 7.30751 14.7966 7.49584 14.6883L12.0125 12.115V13.8966C12.0129 13.9058 12.011 13.9149 12.0071 13.9231C12.0032 13.9314 11.9973 13.9386 11.99 13.9441L8.25001 16.0741C6.58417 17.0208 4.45667 16.4575 3.49417 14.8158L3.49334 14.8175ZM2.51917 6.84745C2.92858 6.14912 3.56999 5.61653 4.33167 5.34245L4.33001 5.46829V9.68495C4.3295 9.79082 4.35737 9.8949 4.41071 9.98635C4.46406 10.0778 4.54093 10.1533 4.63334 10.205L9.15001 12.7775L7.58667 13.6691C7.57894 13.6741 7.5701 13.6771 7.56095 13.6778C7.55179 13.6785 7.54259 13.677 7.53417 13.6733L3.79334 11.5408C2.13084 10.5908 1.56084 8.49245 2.51834 6.84912L2.51917 6.84745ZM15.3667 9.79745L10.85 7.22412L12.4133 6.33412C12.421 6.32902 12.4298 6.3259 12.439 6.32503C12.4481 6.32416 12.4574 6.32556 12.4658 6.32912L16.2067 8.45995C17.8717 9.40995 18.4425 11.5116 17.4808 13.1541C17.0711 13.852 16.4302 14.3847 15.6692 14.66V10.3175C15.6697 10.2118 15.6419 10.1079 15.5887 10.0166C15.5355 9.92531 15.4589 9.84993 15.3667 9.79829V9.79745ZM16.9225 7.48662C16.8861 7.46449 16.8494 7.44282 16.8125 7.42162L13.1125 5.31329C13.0201 5.26013 12.9154 5.23215 12.8088 5.23215C12.7022 5.23215 12.5974 5.26013 12.505 5.31329L7.98834 7.88662V6.10495C7.98798 6.09581 7.98983 6.08671 7.99375 6.07844C7.99767 6.07016 8.00353 6.06296 8.01084 6.05745L11.75 3.92829C13.4167 2.98079 15.5458 3.54495 16.5058 5.18912C16.9117 5.88329 17.06 6.69662 16.9225 7.48662ZM7.13834 10.6616L5.57417 9.77162C5.56601 9.76762 5.55898 9.76163 5.55374 9.75421C5.54849 9.74678 5.54521 9.73815 5.54417 9.72912V5.46662C5.54501 3.56912 7.10501 2.03162 9.02834 2.03329C9.84167 2.03329 10.6283 2.31495 11.2542 2.82829C11.2258 2.84329 11.1775 2.86995 11.145 2.88912L7.44501 4.99745C7.35251 5.04888 7.2755 5.12417 7.222 5.21548C7.1685 5.3068 7.14047 5.41079 7.14084 5.51662L7.13834 10.6608V10.6616ZM7.98834 8.85495L10 7.70912L12.0117 8.85495V11.1466L10 12.2925L7.98751 11.1466V8.85495H7.98834Z" fill="currentColor"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_1767_22960">
7
+ <rect width="20" height="20" fill="currentColor"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -1,9 +1,9 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
- <rect x="-4" y="-5" width="32" height="32" fill="url(#pattern0_1018_35627)"/>
3
- <defs>
4
- <pattern id="pattern0_1018_35627" patternContentUnits="objectBoundingBox" width="1" height="1">
5
- <use xlink:href="#image0_1018_35627" transform="scale(0.005)"/>
6
- </pattern>
7
- <image id="image0_1018_35627" width="200" height="200" preserveAspectRatio="none" xlink:href="data:image/png;base64,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fa9cLn8MwFXsbqhlzszM/K0kSbyQigaDoihysVh8GLvsRVRVPTU8PBy16xP1vVgsNhIKhWaxyySZnp6+n70IDZRSqfRBdP4QqDM5Nu6XJOlcIpFItaoS9T9VVaVqtfr32PzhUmdydCRJuVx+WJZlXlRFg8Pv9/sSicR3sYteBMDldDo9Zdel7nHrcswsLCws6rp+ryRJb2H7a9nt+0O6rv+dqqq8qIoGhyzLQq1W+yRufJR9oxcZHx+v2HWJBoKmaW7DMB7HLoZaExMTj/HSXBo4Y2Nj4x6P5zS2TxL7vqVcLnf7RkWiQaAoijA9PX0HgCXsMNQaGxv7Di/NpYHjcrmUfD7/FezciyyXy+WPblQkGhTxeDzh9/vtHwTdNklGRkae1TSNv51Og6dSqfwGmkOtrZLEHn7Vq9UqL6qiweN2u+Vqtdr+NabOJFkHYAWDwR/ruq5v1iQaEMFgMBCLxZ5GW0K0hZ00y6VS6a7NWkQDJJvN1gRBmENnUmwMsQBYfr//2y6XS2mrRtvg6dB9RlEU0TCM97tcrl8XRVGxLMu0LKuBZsKg0WjU6/X6c6dPn/6+aZqWozo5MEH6lKIoIrZYv5ZlWevr61udv0VEREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREQ06P4fFV6xYjbCfaIAAAAASUVORK5CYII="/>
8
- </defs>
9
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <rect x="-4" y="-5" width="32" height="32" fill="url(#pattern0_1018_35627)"/>
3
+ <defs>
4
+ <pattern id="pattern0_1018_35627" patternContentUnits="objectBoundingBox" width="1" height="1">
5
+ <use xlink:href="#image0_1018_35627" transform="scale(0.005)"/>
6
+ </pattern>
7
+ <image id="image0_1018_35627" width="200" height="200" preserveAspectRatio="none" xlink:href="data:image/png;base64,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fa9cLn8MwFXsbqhlzszM/K0kSbyQigaDoihysVh8GLvsRVRVPTU8PBy16xP1vVgsNhIKhWaxyySZnp6+n70IDZRSqfRBdP4QqDM5Nu6XJOlcIpFItaoS9T9VVaVqtfr32PzhUmdydCRJuVx+WJZlXlRFg8Pv9/sSicR3sYteBMDldDo9Zdel7nHrcswsLCws6rp+ryRJb2H7a9nt+0O6rv+dqqq8qIoGhyzLQq1W+yRufJR9oxcZHx+v2HWJBoKmaW7DMB7HLoZaExMTj/HSXBo4Y2Nj4x6P5zS2TxL7vqVcLnf7RkWiQaAoijA9PX0HgCXsMNQaGxv7Di/NpYHjcrmUfD7/FezciyyXy+WPblQkGhTxeDzh9/vtHwTdNklGRkae1TSNv51Og6dSqfwGmkOtrZLEHn7Vq9UqL6qiweN2u+Vqtdr+NabOJFkHYAWDwR/ruq5v1iQaEMFgMBCLxZ5GW0K0hZ00y6VS6a7NWkQDJJvN1gRBmENnUmwMsQBYfr//2y6XS2mrRtvg6dB9RlEU0TCM97tcrl8XRVGxLMu0LKuBZsKg0WjU6/X6c6dPn/6+aZqWozo5MEH6lKIoIrZYv5ZlWevr61udv0VEREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREQ06P4fFV6xYjbCfaIAAAAASUVORK5CYII="/>
8
+ </defs>
9
+ </svg>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
3
+ <svg width="800px" height="800px" viewBox="0 0 48 48" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
4
+
5
+ <title>Spotify-color</title>
6
+ <desc>Created with Sketch.</desc>
7
+ <defs>
8
+
9
+ </defs>
10
+ <g id="Icons" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
11
+ <g id="Color-" transform="translate(-200.000000, -460.000000)" fill="#00DA5A">
12
+ <path d="M238.16,481.36 C230.48,476.8 217.64,476.32 210.32,478.6 C209.12,478.96 207.92,478.24 207.56,477.16 C207.2,475.96 207.92,474.76 209,474.4 C217.52,471.88 231.56,472.36 240.44,477.64 C241.52,478.24 241.88,479.68 241.28,480.76 C240.68,481.6 239.24,481.96 238.16,481.36 M237.92,488.08 C237.32,488.92 236.24,489.28 235.4,488.68 C228.92,484.72 219.08,483.52 211.52,485.92 C210.56,486.16 209.48,485.68 209.24,484.72 C209,483.76 209.48,482.68 210.44,482.44 C219.2,479.8 230,481.12 237.44,485.68 C238.16,486.04 238.52,487.24 237.92,488.08 M235.04,494.68 C234.56,495.4 233.72,495.64 233,495.16 C227.36,491.68 220.28,490.96 211.88,492.88 C211.04,493.12 210.32,492.52 210.08,491.8 C209.84,490.96 210.44,490.24 211.16,490 C220.28,487.96 228.2,488.8 234.44,492.64 C235.28,493 235.4,493.96 235.04,494.68 M224,460 C210.8,460 200,470.8 200,484 C200,497.2 210.8,508 224,508 C237.2,508 248,497.2 248,484 C248,470.8 237.32,460 224,460" id="Spotify">
13
+
14
+ </path>
15
+ </g>
16
+ </g>
17
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
3
+ <svg fill="#000000" width="800px" height="800px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg">
4
+ <title>tiktok</title>
5
+ <path d="M16.656 1.029c1.637-0.025 3.262-0.012 4.886-0.025 0.054 2.031 0.878 3.859 2.189 5.213l-0.002-0.002c1.411 1.271 3.247 2.095 5.271 2.235l0.028 0.002v5.036c-1.912-0.048-3.71-0.489-5.331-1.247l0.082 0.034c-0.784-0.377-1.447-0.764-2.077-1.196l0.052 0.034c-0.012 3.649 0.012 7.298-0.025 10.934-0.103 1.853-0.719 3.543-1.707 4.954l0.020-0.031c-1.652 2.366-4.328 3.919-7.371 4.011l-0.014 0c-0.123 0.006-0.268 0.009-0.414 0.009-1.73 0-3.347-0.482-4.725-1.319l0.040 0.023c-2.508-1.509-4.238-4.091-4.558-7.094l-0.004-0.041c-0.025-0.625-0.037-1.25-0.012-1.862 0.49-4.779 4.494-8.476 9.361-8.476 0.547 0 1.083 0.047 1.604 0.136l-0.056-0.008c0.025 1.849-0.050 3.699-0.050 5.548-0.423-0.153-0.911-0.242-1.42-0.242-1.868 0-3.457 1.194-4.045 2.861l-0.009 0.030c-0.133 0.427-0.21 0.918-0.21 1.426 0 0.206 0.013 0.41 0.037 0.61l-0.002-0.024c0.332 2.046 2.086 3.59 4.201 3.59 0.061 0 0.121-0.001 0.181-0.004l-0.009 0c1.463-0.044 2.733-0.831 3.451-1.994l0.010-0.018c0.267-0.372 0.45-0.822 0.511-1.311l0.001-0.014c0.125-2.237 0.075-4.461 0.087-6.698 0.012-5.036-0.012-10.060 0.025-15.083z"></path>
6
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="28" height="21" viewBox="0 0 28 21" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M28 20.9645H3.99933V16.9675H0V0.966675H28V20.9645ZM3.99933 16.9675H24.0007V4.96484H3.99933V16.9675ZM14.0012 10.9055L11.172 13.7335L8.344 10.9055L11.172 8.07751L14.0012 10.9055ZM22.001 10.9043L19.173 13.7312L16.3438 10.9043L19.173 8.07517L22.001 10.9043Z" fill="#32F08C"/>
3
- </svg>
1
+ <svg width="28" height="21" viewBox="0 0 28 21" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M28 20.9645H3.99933V16.9675H0V0.966675H28V20.9645ZM3.99933 16.9675H24.0007V4.96484H3.99933V16.9675ZM14.0012 10.9055L11.172 13.7335L8.344 10.9055L11.172 8.07751L14.0012 10.9055ZM22.001 10.9043L19.173 13.7312L16.3438 10.9043L19.173 8.07517L22.001 10.9043Z" fill="#32F08C"/>
3
+ </svg>
@@ -1,10 +1,10 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_1018_35613)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M20.835 6.753H20.664C20.4485 6.75369 20.2352 6.79685 20.0364 6.88001C19.8375 6.96317 19.657 7.0847 19.5052 7.23766C19.3533 7.39062 19.2331 7.572 19.1514 7.77144C19.0697 7.97088 19.0281 8.18447 19.029 8.4V12.084C19.029 12.819 18.426 13.4152 17.709 13.4152C17.4921 13.4134 17.2788 13.3598 17.0868 13.259C16.8948 13.1581 16.7297 13.013 16.605 12.8355L12.876 7.4625C12.7244 7.24261 12.5216 7.06287 12.2852 6.93875C12.0487 6.81463 11.7856 6.74986 11.5185 6.75C10.668 6.75 9.903 7.479 9.903 8.37975V12.0848C9.903 12.8198 9.30525 13.416 8.583 13.416C8.1555 13.416 7.731 13.1992 7.479 12.8362L3.306 6.8235C3.2115 6.6885 3 6.75525 3 6.921V10.134C3 10.296 3.0495 10.4535 3.141 10.587L7.24725 16.5037C7.49025 16.8532 7.84725 17.1128 8.2605 17.2073C9.29325 17.4443 10.2443 16.6418 10.2443 15.6195V11.9175C10.2443 11.1825 10.8345 10.5863 11.5642 10.5863H11.5658C12.0052 10.5863 12.417 10.8022 12.6698 11.166L16.3988 16.5382C16.5481 16.7603 16.7504 16.9418 16.9874 17.0662C17.2244 17.1905 17.4886 17.254 17.7562 17.2507C18.6247 17.2507 19.3695 16.521 19.3695 15.621V11.9168C19.3695 11.1818 19.9598 10.5855 20.6895 10.5855H20.835C20.9265 10.5855 21 10.5105 21 10.419V6.91875C21.0001 6.89698 20.9959 6.87541 20.9877 6.85526C20.9794 6.83512 20.9673 6.81679 20.952 6.80133C20.9367 6.78587 20.9184 6.77357 20.8984 6.76515C20.8783 6.75673 20.8568 6.75235 20.835 6.75225V6.753Z" fill="currentColor"/>
4
- </g>
5
- <defs>
6
- <clipPath id="clip0_1018_35613">
7
- <rect width="18" height="18" fill="white" transform="translate(3 3)"/>
8
- </clipPath>
9
- </defs>
10
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1018_35613)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20.835 6.753H20.664C20.4485 6.75369 20.2352 6.79685 20.0364 6.88001C19.8375 6.96317 19.657 7.0847 19.5052 7.23766C19.3533 7.39062 19.2331 7.572 19.1514 7.77144C19.0697 7.97088 19.0281 8.18447 19.029 8.4V12.084C19.029 12.819 18.426 13.4152 17.709 13.4152C17.4921 13.4134 17.2788 13.3598 17.0868 13.259C16.8948 13.1581 16.7297 13.013 16.605 12.8355L12.876 7.4625C12.7244 7.24261 12.5216 7.06287 12.2852 6.93875C12.0487 6.81463 11.7856 6.74986 11.5185 6.75C10.668 6.75 9.903 7.479 9.903 8.37975V12.0848C9.903 12.8198 9.30525 13.416 8.583 13.416C8.1555 13.416 7.731 13.1992 7.479 12.8362L3.306 6.8235C3.2115 6.6885 3 6.75525 3 6.921V10.134C3 10.296 3.0495 10.4535 3.141 10.587L7.24725 16.5037C7.49025 16.8532 7.84725 17.1128 8.2605 17.2073C9.29325 17.4443 10.2443 16.6418 10.2443 15.6195V11.9175C10.2443 11.1825 10.8345 10.5863 11.5642 10.5863H11.5658C12.0052 10.5863 12.417 10.8022 12.6698 11.166L16.3988 16.5382C16.5481 16.7603 16.7504 16.9418 16.9874 17.0662C17.2244 17.1905 17.4886 17.254 17.7562 17.2507C18.6247 17.2507 19.3695 16.521 19.3695 15.621V11.9168C19.3695 11.1818 19.9598 10.5855 20.6895 10.5855H20.835C20.9265 10.5855 21 10.5105 21 10.419V6.91875C21.0001 6.89698 20.9959 6.87541 20.9877 6.85526C20.9794 6.83512 20.9673 6.81679 20.952 6.80133C20.9367 6.78587 20.9184 6.77357 20.8984 6.76515C20.8783 6.75673 20.8568 6.75235 20.835 6.75225V6.753Z" fill="currentColor"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_1018_35613">
7
+ <rect width="18" height="18" fill="white" transform="translate(3 3)"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path transform="translate(2.22, 2) scale(0.0163)" d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z" fill="currentColor"/>
3
+ </svg>
@@ -25,37 +25,35 @@ export function Checkbox({
25
25
  const showIcon = checked || indeterminate;
26
26
 
27
27
  return (
28
- <div className="w-full h-full flex items-center justify-center">
29
- <div className="relative grid place-items-center">
30
- {/* Native checkbox (visually hidden but accessible) */}
31
- <input
32
- type="checkbox"
28
+ <div className="relative grid place-items-center">
29
+ {/* Native checkbox (visually hidden but accessible) */}
30
+ <input
31
+ type="checkbox"
32
+ className={cn(
33
+ 'w-4 h-4 bg-white dark:bg-neutral-700 rounded appearance-none border border-zinc-200 dark:border-neutral-600 shadow-[0px_2px_1px_0px_rgba(0,0,0,0.1)] cursor-pointer row-start-1 col-start-1 disabled:cursor-not-allowed disabled:opacity-50',
34
+ className
35
+ )}
36
+ checked={indeterminate ? false : checked}
37
+ onChange={(e) => onChange(e.target.checked)}
38
+ tabIndex={tabIndex}
39
+ disabled={disabled}
40
+ />
41
+
42
+ {/* Overlay icon with dynamic background and text color */}
43
+ {showIcon && (
44
+ <div
33
45
  className={cn(
34
- 'w-4 h-4 bg-white dark:bg-neutral-700 rounded appearance-none border border-zinc-200 dark:border-neutral-600 shadow-[0px_2px_1px_0px_rgba(0,0,0,0.1)] cursor-pointer row-start-1 col-start-1 disabled:cursor-not-allowed disabled:opacity-50',
35
- className
46
+ 'mx-auto w-4 h-4 rounded row-start-1 col-start-1 pointer-events-none',
47
+ resolvedTheme === 'light' ? 'bg-black text-white' : 'bg-emerald-300 text-black'
36
48
  )}
37
- checked={indeterminate ? false : checked}
38
- onChange={(e) => onChange(e.target.checked)}
39
- tabIndex={tabIndex}
40
- disabled={disabled}
41
- />
42
-
43
- {/* Overlay icon with dynamic background and text color */}
44
- {showIcon && (
45
- <div
46
- className={cn(
47
- 'mx-auto w-4 h-4 rounded row-start-1 col-start-1 pointer-events-none',
48
- resolvedTheme === 'light' ? 'bg-black text-white' : 'bg-white text-black'
49
- )}
50
- >
51
- {indeterminate ? (
52
- <CheckboxUndeterminedIcon className="w-full h-full" />
53
- ) : (
54
- <CheckboxCheckedIcon className="w-full h-full" />
55
- )}
56
- </div>
57
- )}
58
- </div>
49
+ >
50
+ {indeterminate ? (
51
+ <CheckboxUndeterminedIcon className="w-full h-full" />
52
+ ) : (
53
+ <CheckboxCheckedIcon className="w-full h-full" />
54
+ )}
55
+ </div>
56
+ )}
59
57
  </div>
60
58
  );
61
59
  }
@@ -7,6 +7,10 @@ interface CodeBlockProps {
7
7
  showCopy?: boolean;
8
8
  onCopy?: (code: string) => void;
9
9
  buttonClassName?: string;
10
+ /** Optional label displayed in header - enables compact variant */
11
+ label?: string;
12
+ /** Variant style: 'default' for inline code, 'compact' for labeled blocks */
13
+ variant?: 'default' | 'compact';
10
14
  }
11
15
 
12
16
  export function CodeBlock({
@@ -15,18 +19,67 @@ export function CodeBlock({
15
19
  showCopy = true,
16
20
  onCopy,
17
21
  buttonClassName,
22
+ label,
23
+ variant = 'default',
18
24
  }: CodeBlockProps) {
25
+ // Use compact variant when label is provided
26
+ const isCompact = variant === 'compact' || !!label;
27
+
28
+ if (isCompact) {
29
+ return (
30
+ <div
31
+ className={cn(
32
+ 'bg-gray-100 dark:bg-neutral-900 rounded p-3 w-full overflow-hidden',
33
+ className
34
+ )}
35
+ >
36
+ {/* Header row with label and copy button */}
37
+ <div className="flex items-center justify-between mb-2">
38
+ {label && (
39
+ <div className="bg-white dark:bg-neutral-700 rounded px-2 shrink-0">
40
+ <span className="text-gray-900 dark:text-neutral-50 text-xs">{label}</span>
41
+ </div>
42
+ )}
43
+ {showCopy && (
44
+ <CopyButton
45
+ text={code}
46
+ onCopy={onCopy}
47
+ showText={false}
48
+ className={cn(
49
+ 'h-6 w-6 p-1 bg-white dark:bg-neutral-700 hover:bg-neutral-100 dark:hover:bg-neutral-600 border-none rounded-md shadow-sm min-w-0 shrink-0 text-black dark:text-white',
50
+ !label && 'ml-auto',
51
+ buttonClassName
52
+ )}
53
+ />
54
+ )}
55
+ </div>
56
+ {/* Code text */}
57
+ <p className="text-gray-900 dark:text-neutral-300 text-sm leading-6 break-all whitespace-pre-wrap">
58
+ {code}
59
+ </p>
60
+ </div>
61
+ );
62
+ }
63
+
64
+ // Default inline variant
19
65
  return (
20
66
  <div
21
67
  className={cn(
22
- 'bg-slate-50 dark:bg-neutral-800 py-4 px-6 flex items-center justify-between text-zinc-950 dark:text-neutral-300 font-mono text-sm break-all font-semibold',
68
+ 'relative h-16 bg-slate-50 dark:bg-neutral-800 py-4 px-6 rounded-md flex items-center justify-between text-zinc-950 dark:text-neutral-300 font-mono text-sm break-all font-semibold',
23
69
  className
24
70
  )}
25
71
  >
26
72
  <div className="flex-1 max-w-4/5">
27
73
  <code>{code}</code>
28
74
  </div>
29
- {showCopy && <CopyButton text={code} onCopy={onCopy} className={buttonClassName} />}
75
+ {showCopy && (
76
+ <CopyButton
77
+ variant="primary"
78
+ text={code}
79
+ onCopy={onCopy}
80
+ className={cn('absolute right-3.5 top-3.5 h-9 pl-2', buttonClassName)}
81
+ />
82
+ )}
30
83
  </div>
31
84
  );
32
85
  }