this.gui 1.0.18 → 1.1.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 (480) hide show
  1. package/.storybook/main.js +40 -0
  2. package/.storybook/manager-head.html +13 -0
  3. package/.storybook/manager.js +15 -0
  4. package/.storybook/preview.tsx +54 -0
  5. package/.storybook/vitest.setup.js +6 -0
  6. package/.storybook/withLayout.tsx +18 -0
  7. package/README.md +1 -220
  8. package/dist/GUI.png +0 -0
  9. package/dist/GUI2.png +0 -0
  10. package/dist/favicon.ico +0 -0
  11. package/dist/this-gui.es.js +108493 -5056
  12. package/dist/this-gui.umd.js +239 -44
  13. package/dist/this.GUI.png +0 -0
  14. package/nodes/overall approach.md +93 -0
  15. package/notes/Proyect.md +109 -0
  16. package/package.json +71 -54
  17. package/public/GUI.png +0 -0
  18. package/public/GUI2.png +0 -0
  19. package/public/favicon.ico +0 -0
  20. package/public/this.GUI.png +0 -0
  21. package/src/components/generics/Cards/Gridme.jsx +52 -0
  22. package/src/components/generics/Cards/LilBox.jsx +65 -0
  23. package/src/components/generics/Cards/ModuleCard.jsx +106 -0
  24. package/src/components/generics/Chats/FullChatBot.jsx +223 -0
  25. package/src/components/generics/Code/CodeBlock.jsx +33 -0
  26. package/src/components/generics/Feedback/Callout.jsx +92 -0
  27. package/src/components/generics/Layout/GridX.jsx +29 -0
  28. package/src/components/generics/Layout/Hero2.jsx +132 -0
  29. package/src/components/generics/Layout/PageContainer.jsx +29 -0
  30. package/src/components/generics/Layout/PageDivider.jsx +20 -0
  31. package/src/components/generics/Layout/Section.jsx +43 -0
  32. package/src/components/generics/Layout/SectionHeader.jsx +21 -0
  33. package/src/components/generics/Media/Img.jsx +58 -0
  34. package/src/components/generics/Media/VideoEmbed.jsx +51 -0
  35. package/src/components/generics/Organization/TableOfContents.jsx +51 -0
  36. package/src/components/generics/Organization/Tabs.jsx +45 -0
  37. package/src/components/generics/Text/TextList.jsx +41 -0
  38. package/src/components/generics/Text/TextParagraph.jsx +28 -0
  39. package/src/components/generics/Text/TextQuote.jsx +23 -0
  40. package/src/components/generics/Text/TextTitle.jsx +44 -0
  41. package/src/components/this.me/MeActive.jsx +24 -0
  42. package/src/components/this.me/MeFloating.jsx +183 -0
  43. package/src/components/this.me/MeInactive.jsx +21 -0
  44. package/src/components/this.me/MeListUs.jsx +40 -0
  45. package/src/components/this.me/MeState.jsx +25 -0
  46. package/src/components/this.me/hooks/useMe.js +43 -0
  47. package/src/context/GuiProvider.tsx +243 -0
  48. package/src/gui/atoms/AppBar/AppBar.resolver.tsx +77 -0
  49. package/src/gui/atoms/AppBar/AppBar.stories.tsx +232 -0
  50. package/src/gui/atoms/AppBar/AppBar.tsx +10 -0
  51. package/src/gui/atoms/Box/Box.resolver.tsx +171 -0
  52. package/src/gui/atoms/Box/Box.stories.tsx +271 -0
  53. package/src/gui/atoms/Box/Box.tsx +15 -0
  54. package/src/gui/atoms/Button/Button.resolver.tsx +98 -0
  55. package/src/gui/atoms/Button/Button.stories.tsx +225 -0
  56. package/src/gui/atoms/Button/Button.tsx +40 -0
  57. package/src/gui/atoms/Collapse/Collapse.resolver.tsx +85 -0
  58. package/src/gui/atoms/Collapse/Collapse.stories.tsx +136 -0
  59. package/src/gui/atoms/Collapse/Collapse.tsx +17 -0
  60. package/src/gui/atoms/Divider/Divider.resolver.tsx +95 -0
  61. package/src/gui/atoms/Divider/Divider.stories.tsx +109 -0
  62. package/src/gui/atoms/Divider/Divider.tsx +14 -0
  63. package/src/gui/atoms/Drawer/Drawer.resolver.tsx +116 -0
  64. package/src/gui/atoms/Drawer/Drawer.stories.tsx +229 -0
  65. package/src/gui/atoms/Drawer/Drawer.tsx +8 -0
  66. package/src/gui/atoms/IconButton/IconButton.resolver.tsx +135 -0
  67. package/src/gui/atoms/IconButton/IconButton.stories.tsx +141 -0
  68. package/src/gui/atoms/IconButton/IconButton.tsx +22 -0
  69. package/src/gui/atoms/Link/Link.resolver.tsx +75 -0
  70. package/src/gui/atoms/Link/Link.stories.tsx +164 -0
  71. package/src/gui/atoms/Link/Link.tsx +14 -0
  72. package/src/gui/atoms/List/List.resolver.tsx +95 -0
  73. package/src/gui/atoms/List/List.stories.tsx +143 -0
  74. package/src/gui/atoms/List/List.tsx +20 -0
  75. package/src/gui/atoms/ListItem/ListItem.resolver.tsx +88 -0
  76. package/src/gui/atoms/ListItem/ListItem.stories.tsx +157 -0
  77. package/src/gui/atoms/ListItem/ListItem.tsx +19 -0
  78. package/src/gui/atoms/ListItemButton/ListItemButton.resolver.tsx +208 -0
  79. package/src/gui/atoms/ListItemButton/ListItemButton.stories.tsx +161 -0
  80. package/src/gui/atoms/ListItemButton/ListItemButton.tsx +15 -0
  81. package/src/gui/atoms/ListItemIcon/ListItemIcon.resolver.tsx +102 -0
  82. package/src/gui/atoms/ListItemIcon/ListItemIcon.stories.tsx +135 -0
  83. package/src/gui/atoms/ListItemIcon/ListItemIcon.tsx +11 -0
  84. package/src/gui/atoms/ListItemText/ListItemText.resolver.tsx +112 -0
  85. package/src/gui/atoms/ListItemText/ListItemText.stories.tsx +162 -0
  86. package/src/gui/atoms/ListItemText/ListItemText.tsx +15 -0
  87. package/src/gui/atoms/Menu/Menu.resolver.tsx +112 -0
  88. package/src/gui/atoms/Menu/Menu.stories.tsx +168 -0
  89. package/src/gui/atoms/Menu/Menu.tsx +17 -0
  90. package/src/gui/atoms/MenuItem/MenuItem.resolver.tsx +183 -0
  91. package/src/gui/atoms/MenuItem/MenuItem.stories.tsx +138 -0
  92. package/src/gui/atoms/MenuItem/MenuItem.tsx +14 -0
  93. package/src/gui/atoms/Paper/Paper.resolver.tsx +98 -0
  94. package/src/gui/atoms/Paper/Paper.stories.tsx +191 -0
  95. package/src/gui/atoms/Paper/Paper.tsx +17 -0
  96. package/src/gui/atoms/Stack/Stack.resolver.tsx +94 -0
  97. package/src/gui/atoms/Stack/Stack.stories.tsx +166 -0
  98. package/src/gui/atoms/Stack/Stack.tsx +15 -0
  99. package/src/gui/atoms/Switch/Switch.resolver.tsx +53 -0
  100. package/src/gui/atoms/Switch/Switch.stories.tsx +242 -0
  101. package/src/gui/atoms/Switch/Switch.tsx +22 -0
  102. package/src/gui/atoms/Toolbar/Toolbar.resolver.tsx +60 -0
  103. package/src/gui/atoms/Toolbar/Toolbar.stories.tsx +163 -0
  104. package/src/gui/atoms/Toolbar/Toolbar.tsx +16 -0
  105. package/src/gui/atoms/Tooltip/Tooltip.resolver.tsx +142 -0
  106. package/src/gui/atoms/Tooltip/Tooltip.stories.tsx +118 -0
  107. package/src/gui/atoms/Tooltip/Tooltip.tsx +78 -0
  108. package/src/gui/atoms/Typography/Typography.resolver.tsx +158 -0
  109. package/src/gui/atoms/Typography/Typography.stories.tsx +228 -0
  110. package/src/gui/atoms/Typography/Typography.tsx +27 -0
  111. package/src/gui/atoms.tsx +129 -0
  112. package/src/gui/index.ts +69 -0
  113. package/src/gui/molecules/AppBars/Footer/Footer.resolver.tsx +104 -0
  114. package/src/gui/molecules/AppBars/Footer/Footer.stories.tsx +499 -0
  115. package/src/gui/molecules/AppBars/Footer/Footer.tsx +307 -0
  116. package/src/gui/molecules/AppBars/LeftSidebar/LeftSidebar.resolver.tsx +75 -0
  117. package/src/gui/molecules/AppBars/LeftSidebar/LeftSidebar.stories.tsx +61 -0
  118. package/src/gui/molecules/AppBars/LeftSidebar/LeftSidebar.tsx +511 -0
  119. package/src/gui/molecules/AppBars/LeftSidebar/SidebarToggleButton.tsx +51 -0
  120. package/src/gui/molecules/AppBars/RightSidebar/RightSidebar.resolver.tsx +97 -0
  121. package/src/gui/molecules/AppBars/RightSidebar/RightSidebar.stories.tsx +294 -0
  122. package/src/gui/molecules/AppBars/RightSidebar/RightSidebar.tsx +295 -0
  123. package/src/gui/molecules/AppBars/StickyOptions/StickyOptionsTop.stories.tsx +480 -0
  124. package/src/gui/molecules/AppBars/StickyOptions/StickyOptionsTop.tsx +484 -0
  125. package/src/gui/molecules/AppBars/TopBar/TopBar.resolver.tsx +84 -0
  126. package/src/gui/molecules/AppBars/TopBar/TopBar.stories.tsx +297 -0
  127. package/src/gui/molecules/AppBars/TopBar/TopBar.tsx +299 -0
  128. package/src/gui/molecules/Utilities/ThemeModeToggle/ThemeModeToggle.resolver.tsx +72 -0
  129. package/src/gui/molecules/Utilities/ThemeModeToggle/ThemeModeToggle.stories.tsx +154 -0
  130. package/src/gui/molecules/Utilities/ThemeModeToggle/ThemeModeToggle.tsx +100 -0
  131. package/src/gui/molecules/Utilities/ThemeSelector.jsx +281 -0
  132. package/src/gui/utils/nodeID.ts +8 -0
  133. package/src/index.js +111 -0
  134. package/src/registry/GuiRegistry.ts +19 -0
  135. package/src/registry/factory.ts +12 -0
  136. package/src/registry/index.ts +3 -0
  137. package/src/registry/types.ts +6 -0
  138. package/src/stories/01.Home.mdx +22 -0
  139. package/src/stories/02.Understanding.This.GUI.md +149 -0
  140. package/src/stories/03.Themes.mdx +235 -0
  141. package/src/stories/04.GuiProvider.md +126 -0
  142. package/src/stories/04.GuiProvider.mdx +129 -0
  143. package/src/stories/Theme/BreakPointsAndGrids.stories.jsx +185 -0
  144. package/src/stories/Theme/Colors.stories.jsx +245 -0
  145. package/src/stories/Theme/Icons.stories.jsx +313 -0
  146. package/src/stories/Theme/Motion.stories.jsx +206 -0
  147. package/src/stories/Theme/ShadowAndElevation.stories.jsx +95 -0
  148. package/src/stories/Theme/SpacingAndRadius.stories.jsx +129 -0
  149. package/src/stories/Theme/Typography.stories.jsx +211 -0
  150. package/src/stories/assets/this.GUI.png +0 -0
  151. package/src/templates/BrowserExtension.jsx +56 -0
  152. package/src/templates/Layout.tsx +36 -0
  153. package/src/templates/Minimal.jsx +123 -0
  154. package/src/templates/Shell/Shell.jsx +107 -0
  155. package/src/themes/fromTokens.ts +352 -0
  156. package/src/themes/icons/Icon.tsx +137 -0
  157. package/src/themes/icons/packs/Lucide.ts +72 -0
  158. package/src/themes/icons/packs/Material.ts +87 -0
  159. package/src/themes/icons/registry.tsx +178 -0
  160. package/src/themes/index.js +116 -0
  161. package/src/themes/theme.d.ts +116 -0
  162. package/src/themes/tokens/global.tokens.json +107 -0
  163. package/src/themes/tokens/neurons/dark.tokens.json +45 -0
  164. package/src/themes/tokens/neurons/light.tokens.json +51 -0
  165. package/src/themes/tokens/neurons/manifest.json +23 -0
  166. package/src/types/theme.d.ts +32 -0
  167. package/src/types/viewport.ts +132 -0
  168. package/tsconfig.json +24 -0
  169. package/vite.config.js +74 -0
  170. package/dist/style.css +0 -1
  171. package/src/App.jsx +0 -39
  172. package/src/CreatePage.jsx +0 -61
  173. package/src/MDXEditor.jsx +0 -51
  174. package/src/MdxProvider.jsx +0 -20
  175. package/src/Page.jsx +0 -28
  176. package/src/PageDashboard.jsx +0 -56
  177. package/src/SiteBuilder.jsx +0 -108
  178. package/src/example.json +0 -43
  179. package/src/index.mdx +0 -164
  180. package/src/main.jsx +0 -15
  181. package/src/scripts/ComponentRegistry.js +0 -70
  182. package/src/scripts/logASCIIArt.js +0 -12
  183. package/src/scripts/postinstall.js +0 -111
  184. package/src/scripts/renderComponents.js +0 -11
  185. package/src/stories/Atoms/Alert/Alert.css +0 -211
  186. package/src/stories/Atoms/Alert/Alert.jsx +0 -56
  187. package/src/stories/Atoms/Alert/Alert.stories.jsx +0 -167
  188. package/src/stories/Atoms/Audio/Audio.css +0 -259
  189. package/src/stories/Atoms/Audio/Audio.jsx +0 -216
  190. package/src/stories/Atoms/Audio/Audio.stories.jsx +0 -191
  191. package/src/stories/Atoms/Badge/Badge.css +0 -249
  192. package/src/stories/Atoms/Badge/Badge.jsx +0 -54
  193. package/src/stories/Atoms/Badge/Badge.stories.jsx +0 -121
  194. package/src/stories/Atoms/Button/Button.css +0 -332
  195. package/src/stories/Atoms/Button/Button.jsx +0 -44
  196. package/src/stories/Atoms/Button/Button.stories.jsx +0 -209
  197. package/src/stories/Atoms/Caption/Caption.css +0 -169
  198. package/src/stories/Atoms/Caption/Caption.jsx +0 -72
  199. package/src/stories/Atoms/Caption/Caption.stories.jsx +0 -207
  200. package/src/stories/Atoms/Checkbox/Checkbox.css +0 -182
  201. package/src/stories/Atoms/Checkbox/Checkbox.jsx +0 -83
  202. package/src/stories/Atoms/Checkbox/Checkbox.stories.jsx +0 -112
  203. package/src/stories/Atoms/Container/Container.css +0 -470
  204. package/src/stories/Atoms/Container/Container.jsx +0 -116
  205. package/src/stories/Atoms/Container/Container.stories.jsx +0 -145
  206. package/src/stories/Atoms/Divider/Divider.css +0 -147
  207. package/src/stories/Atoms/Divider/Divider.jsx +0 -62
  208. package/src/stories/Atoms/Divider/Divider.stories.jsx +0 -105
  209. package/src/stories/Atoms/Grid/Grid.css +0 -160
  210. package/src/stories/Atoms/Grid/Grid.jsx +0 -43
  211. package/src/stories/Atoms/Grid/Grid.stories.jsx +0 -84
  212. package/src/stories/Atoms/Heading/Heading.css +0 -112
  213. package/src/stories/Atoms/Heading/Heading.jsx +0 -69
  214. package/src/stories/Atoms/Heading/Heading.stories.jsx +0 -130
  215. package/src/stories/Atoms/Icon/Icon.css +0 -240
  216. package/src/stories/Atoms/Icon/Icon.jsx +0 -80
  217. package/src/stories/Atoms/Icon/Icon.stories.jsx +0 -177
  218. package/src/stories/Atoms/Image/Image.css +0 -245
  219. package/src/stories/Atoms/Image/Image.jsx +0 -175
  220. package/src/stories/Atoms/Image/Image.stories.jsx +0 -332
  221. package/src/stories/Atoms/Label/Label.css +0 -171
  222. package/src/stories/Atoms/Label/Label.jsx +0 -71
  223. package/src/stories/Atoms/Label/Label.stories.jsx +0 -180
  224. package/src/stories/Atoms/Link/Link.css +0 -51
  225. package/src/stories/Atoms/Link/Link.jsx +0 -72
  226. package/src/stories/Atoms/Link/Link.stories.jsx +0 -153
  227. package/src/stories/Atoms/Loader/Loader.css +0 -106
  228. package/src/stories/Atoms/Loader/Loader.jsx +0 -58
  229. package/src/stories/Atoms/Loader/Loader.stories.jsx +0 -99
  230. package/src/stories/Atoms/Logo/Logo.css +0 -94
  231. package/src/stories/Atoms/Logo/Logo.jsx +0 -53
  232. package/src/stories/Atoms/Logo/Logo.stories.jsx +0 -120
  233. package/src/stories/Atoms/Paragraph/Paragraph.css +0 -180
  234. package/src/stories/Atoms/Paragraph/Paragraph.jsx +0 -77
  235. package/src/stories/Atoms/Paragraph/Paragraph.stories.jsx +0 -143
  236. package/src/stories/Atoms/ProgressBar/ProgressBar.css +0 -127
  237. package/src/stories/Atoms/ProgressBar/ProgressBar.jsx +0 -40
  238. package/src/stories/Atoms/ProgressBar/ProgressBar.stories.jsx +0 -86
  239. package/src/stories/Atoms/RadioButton/RadioButton.css +0 -130
  240. package/src/stories/Atoms/RadioButton/RadioButton.jsx +0 -87
  241. package/src/stories/Atoms/RadioButton/RadioButton.stories.jsx +0 -113
  242. package/src/stories/Atoms/Range/Range.css +0 -169
  243. package/src/stories/Atoms/Range/Range.jsx +0 -87
  244. package/src/stories/Atoms/Range/Range.stories.jsx +0 -110
  245. package/src/stories/Atoms/Section/Section.css +0 -268
  246. package/src/stories/Atoms/Section/Section.jsx +0 -63
  247. package/src/stories/Atoms/Section/Section.stories.jsx +0 -46
  248. package/src/stories/Atoms/Select/Select.css +0 -87
  249. package/src/stories/Atoms/Select/Select.jsx +0 -73
  250. package/src/stories/Atoms/Select/Select.stories.jsx +0 -109
  251. package/src/stories/Atoms/Slider/Slider.css +0 -90
  252. package/src/stories/Atoms/Slider/Slider.jsx +0 -129
  253. package/src/stories/Atoms/Slider/Slider.stories.jsx +0 -90
  254. package/src/stories/Atoms/Snackbar/Snackbar.css +0 -313
  255. package/src/stories/Atoms/Snackbar/Snackbar.jsx +0 -72
  256. package/src/stories/Atoms/Snackbar/Snackbar.stories.jsx +0 -78
  257. package/src/stories/Atoms/Spacer/Spacer.css +0 -114
  258. package/src/stories/Atoms/Spacer/Spacer.jsx +0 -35
  259. package/src/stories/Atoms/Spacer/Spacer.stories.jsx +0 -61
  260. package/src/stories/Atoms/Spinner/Spinner.css +0 -110
  261. package/src/stories/Atoms/Spinner/Spinner.jsx +0 -65
  262. package/src/stories/Atoms/Spinner/Spinner.stories.jsx +0 -58
  263. package/src/stories/Atoms/Tag/Tag.css +0 -112
  264. package/src/stories/Atoms/Tag/Tag.jsx +0 -75
  265. package/src/stories/Atoms/Tag/Tag.stories.jsx +0 -67
  266. package/src/stories/Atoms/TextArea/TextArea.css +0 -99
  267. package/src/stories/Atoms/TextArea/TextArea.jsx +0 -118
  268. package/src/stories/Atoms/TextArea/TextArea.stories.jsx +0 -36
  269. package/src/stories/Atoms/TextInput/TextInput.css +0 -102
  270. package/src/stories/Atoms/TextInput/TextInput.jsx +0 -133
  271. package/src/stories/Atoms/TextInput/TextInput.stories.jsx +0 -69
  272. package/src/stories/Atoms/Toggle/Toggle.css +0 -118
  273. package/src/stories/Atoms/Toggle/Toggle.jsx +0 -69
  274. package/src/stories/Atoms/Toggle/Toggle.stories.jsx +0 -35
  275. package/src/stories/Atoms/Tooltip/Tooltip.css +0 -383
  276. package/src/stories/Atoms/Tooltip/Tooltip.jsx +0 -46
  277. package/src/stories/Atoms/Tooltip/Tooltip.stories.jsx +0 -52
  278. package/src/stories/Atoms/Video/Video.css +0 -39
  279. package/src/stories/Atoms/Video/Video.jsx +0 -78
  280. package/src/stories/Atoms/Video/Video.stories.jsx +0 -41
  281. package/src/stories/Atoms/index.js +0 -72
  282. package/src/stories/Atoms/meta_Atoms.js +0 -51
  283. package/src/stories/Components.js +0 -198
  284. package/src/stories/Getting Started.mdx +0 -239
  285. package/src/stories/Layouts/Accordion/Accordion.css +0 -293
  286. package/src/stories/Layouts/Accordion/Accordion.jsx +0 -74
  287. package/src/stories/Layouts/Accordion/Accordion.stories.jsx +0 -39
  288. package/src/stories/Layouts/Flexbox/Flexbox.css +0 -16
  289. package/src/stories/Layouts/Flexbox/Flexbox.jsx +0 -11
  290. package/src/stories/Layouts/Flexbox/Flexbox.stories.jsx +0 -28
  291. package/src/stories/Layouts/Footer/Footer.css +0 -16
  292. package/src/stories/Layouts/Footer/Footer.jsx +0 -31
  293. package/src/stories/Layouts/Footer/Footer.stories.jsx +0 -28
  294. package/src/stories/Layouts/Header/Header.css +0 -16
  295. package/src/stories/Layouts/Header/Header.jsx +0 -31
  296. package/src/stories/Layouts/Header/Header.stories.jsx +0 -28
  297. package/src/stories/Layouts/HeroBanner/HeroBanner.css +0 -16
  298. package/src/stories/Layouts/HeroBanner/HeroBanner.jsx +0 -31
  299. package/src/stories/Layouts/HeroBanner/HeroBanner.stories.jsx +0 -28
  300. package/src/stories/Layouts/HeroImageVideo/HeroImageVideo.css +0 -16
  301. package/src/stories/Layouts/HeroImageVideo/HeroImageVideo.jsx +0 -31
  302. package/src/stories/Layouts/HeroImageVideo/HeroImageVideo.stories.jsx +0 -28
  303. package/src/stories/Layouts/Pagination/Pagination.css +0 -16
  304. package/src/stories/Layouts/Pagination/Pagination.jsx +0 -31
  305. package/src/stories/Layouts/Pagination/Pagination.stories.jsx +0 -28
  306. package/src/stories/Layouts/Sidebar/Sidebar.css +0 -16
  307. package/src/stories/Layouts/Sidebar/Sidebar.jsx +0 -71
  308. package/src/stories/Layouts/Sidebar/Sidebar.stories.jsx +0 -28
  309. package/src/stories/Layouts/Tabs/Tabs.css +0 -16
  310. package/src/stories/Layouts/Tabs/Tabs.jsx +0 -31
  311. package/src/stories/Layouts/Tabs/Tabs.stories.jsx +0 -28
  312. package/src/stories/Layouts/index.js +0 -25
  313. package/src/stories/Layouts/meta_Layouts.js +0 -28
  314. package/src/stories/MDX.mdx +0 -118
  315. package/src/stories/Miscellaneous/Miscellaneous.js +0 -24
  316. package/src/stories/Molecules/Accordion/Accordion.css +0 -4
  317. package/src/stories/Molecules/Accordion/Accordion.jsx +0 -25
  318. package/src/stories/Molecules/Accordion/Accordion.stories.jsx +0 -20
  319. package/src/stories/Molecules/AudioPlayer/AudioPlayer.css +0 -97
  320. package/src/stories/Molecules/AudioPlayer/AudioPlayer.jsx +0 -244
  321. package/src/stories/Molecules/AudioPlayer/AudioPlayer.stories.jsx +0 -55
  322. package/src/stories/Molecules/AvatarWithName/AvatarWithName.css +0 -130
  323. package/src/stories/Molecules/AvatarWithName/AvatarWithName.jsx +0 -80
  324. package/src/stories/Molecules/AvatarWithName/AvatarWithName.stories.jsx +0 -20
  325. package/src/stories/Molecules/Breadcrumbs/Breadcrumbs.css +0 -147
  326. package/src/stories/Molecules/Breadcrumbs/Breadcrumbs.jsx +0 -51
  327. package/src/stories/Molecules/Breadcrumbs/Breadcrumbs.stories.jsx +0 -36
  328. package/src/stories/Molecules/ButtonGroup/ButtonGroup.css +0 -465
  329. package/src/stories/Molecules/ButtonGroup/ButtonGroup.jsx +0 -47
  330. package/src/stories/Molecules/ButtonGroup/ButtonGroup.stories.jsx +0 -44
  331. package/src/stories/Molecules/Card/Card.css +0 -41
  332. package/src/stories/Molecules/Card/Card.jsx +0 -92
  333. package/src/stories/Molecules/Card/Card.stories.jsx +0 -34
  334. package/src/stories/Molecules/ComparisonTable/ComparisonTable.css +0 -35
  335. package/src/stories/Molecules/ComparisonTable/ComparisonTable.jsx +0 -104
  336. package/src/stories/Molecules/ComparisonTable/ComparisonTable.stories.jsx +0 -81
  337. package/src/stories/Molecules/DataTable/DataTable.css +0 -4
  338. package/src/stories/Molecules/DataTable/DataTable.jsx +0 -25
  339. package/src/stories/Molecules/DataTable/DataTable.stories.jsx +0 -20
  340. package/src/stories/Molecules/Dropdown/Dropdown.css +0 -192
  341. package/src/stories/Molecules/Dropdown/Dropdown.jsx +0 -96
  342. package/src/stories/Molecules/Dropdown/Dropdown.stories.jsx +0 -45
  343. package/src/stories/Molecules/FileUpload/FileUpload.css +0 -4
  344. package/src/stories/Molecules/FileUpload/FileUpload.jsx +0 -25
  345. package/src/stories/Molecules/FileUpload/FileUpload.stories.jsx +0 -20
  346. package/src/stories/Molecules/FormField/FormField.css +0 -4
  347. package/src/stories/Molecules/FormField/FormField.jsx +0 -25
  348. package/src/stories/Molecules/FormField/FormField.stories.jsx +0 -20
  349. package/src/stories/Molecules/Header/Header.css +0 -35
  350. package/src/stories/Molecules/Header/Header.jsx +0 -76
  351. package/src/stories/Molecules/Header/Header.stories.jsx +0 -28
  352. package/src/stories/Molecules/IconButton/IconButton.css +0 -4
  353. package/src/stories/Molecules/IconButton/IconButton.jsx +0 -25
  354. package/src/stories/Molecules/IconButton/IconButton.stories.jsx +0 -20
  355. package/src/stories/Molecules/ImageWithCaption/ImageWithCaption.css +0 -4
  356. package/src/stories/Molecules/ImageWithCaption/ImageWithCaption.jsx +0 -25
  357. package/src/stories/Molecules/ImageWithCaption/ImageWithCaption.stories.jsx +0 -20
  358. package/src/stories/Molecules/InputGroup/InputGroup.css +0 -4
  359. package/src/stories/Molecules/InputGroup/InputGroup.jsx +0 -25
  360. package/src/stories/Molecules/InputGroup/InputGroup.stories.jsx +0 -20
  361. package/src/stories/Molecules/InputWithLabel/InputWithLabel.css +0 -4
  362. package/src/stories/Molecules/InputWithLabel/InputWithLabel.jsx +0 -25
  363. package/src/stories/Molecules/InputWithLabel/InputWithLabel.stories.jsx +0 -20
  364. package/src/stories/Molecules/List/List.css +0 -4
  365. package/src/stories/Molecules/List/List.jsx +0 -25
  366. package/src/stories/Molecules/List/List.stories.jsx +0 -20
  367. package/src/stories/Molecules/MediaCard/MediaCard.css +0 -4
  368. package/src/stories/Molecules/MediaCard/MediaCard.jsx +0 -25
  369. package/src/stories/Molecules/MediaCard/MediaCard.stories.jsx +0 -20
  370. package/src/stories/Molecules/Modal/Modal.css +0 -4
  371. package/src/stories/Molecules/Modal/Modal.jsx +0 -25
  372. package/src/stories/Molecules/Modal/Modal.stories.jsx +0 -20
  373. package/src/stories/Molecules/Navbar/Navbar.css +0 -91
  374. package/src/stories/Molecules/Navbar/Navbar.jsx +0 -82
  375. package/src/stories/Molecules/Navbar/Navbar.stories.jsx +0 -70
  376. package/src/stories/Molecules/Notification/Notification.css +0 -4
  377. package/src/stories/Molecules/Notification/Notification.jsx +0 -25
  378. package/src/stories/Molecules/Notification/Notification.stories.jsx +0 -20
  379. package/src/stories/Molecules/PricingTable/PricingTable.css +0 -4
  380. package/src/stories/Molecules/PricingTable/PricingTable.jsx +0 -25
  381. package/src/stories/Molecules/PricingTable/PricingTable.stories.jsx +0 -20
  382. package/src/stories/Molecules/SearchBar/SearchBar.css +0 -69
  383. package/src/stories/Molecules/SearchBar/SearchBar.jsx +0 -73
  384. package/src/stories/Molecules/SearchBar/SearchBar.stories.jsx +0 -29
  385. package/src/stories/Molecules/SelectTheme/SelectTheme.css +0 -25
  386. package/src/stories/Molecules/SelectTheme/SelectTheme.jsx +0 -22
  387. package/src/stories/Molecules/SelectTheme/SelectTheme.stories.jsx +0 -24
  388. package/src/stories/Molecules/Sidebar/Sidebar.css +0 -67
  389. package/src/stories/Molecules/Sidebar/Sidebar.jsx +0 -80
  390. package/src/stories/Molecules/Sidebar/Sidebar.stories.jsx +0 -35
  391. package/src/stories/Molecules/VideoWithDescription/VideoWithDescription.css +0 -4
  392. package/src/stories/Molecules/VideoWithDescription/VideoWithDescription.jsx +0 -25
  393. package/src/stories/Molecules/VideoWithDescription/VideoWithDescription.stories.jsx +0 -20
  394. package/src/stories/Molecules/index.js +0 -58
  395. package/src/stories/Molecules/meta_Molecules.js +0 -47
  396. package/src/stories/Organisms/Profile/UserFriends/UserFriends.context.jsx +0 -15
  397. package/src/stories/Organisms/Profile/UserFriends/UserFriends.css +0 -4
  398. package/src/stories/Organisms/Profile/UserFriends/UserFriends.jsx +0 -13
  399. package/src/stories/Organisms/Profile/UserFriends/UserFriends.stories.jsx +0 -26
  400. package/src/stories/Organisms/Profile/UserPosts/UserPosts.context.jsx +0 -15
  401. package/src/stories/Organisms/Profile/UserPosts/UserPosts.css +0 -4
  402. package/src/stories/Organisms/Profile/UserPosts/UserPosts.jsx +0 -13
  403. package/src/stories/Organisms/Profile/UserPosts/UserPosts.stories.jsx +0 -26
  404. package/src/stories/Organisms/Profile/UserProfile/UserProfile.context.jsx +0 -15
  405. package/src/stories/Organisms/Profile/UserProfile/UserProfile.css +0 -4
  406. package/src/stories/Organisms/Profile/UserProfile/UserProfile.jsx +0 -13
  407. package/src/stories/Organisms/Profile/UserProfile/UserProfile.stories.jsx +0 -26
  408. package/src/stories/Organisms/meta_Organisms.js +0 -39
  409. package/src/stories/Pages/Page/Page.css +0 -69
  410. package/src/stories/Pages/Page/Page.jsx +0 -69
  411. package/src/stories/Pages/Page/Page.stories.js +0 -26
  412. package/src/stories/Pages/Page/Pages.js +0 -31
  413. package/src/stories/Templates/AdminDashboard/AdminDashboard.css +0 -7
  414. package/src/stories/Templates/AdminDashboard/AdminDashboard.jsx +0 -24
  415. package/src/stories/Templates/AdminDashboard/AdminDashboard.stories.jsx +0 -20
  416. package/src/stories/Templates/CallToAction/CallToAction.css +0 -7
  417. package/src/stories/Templates/CallToAction/CallToAction.jsx +0 -24
  418. package/src/stories/Templates/CallToAction/CallToAction.stories.jsx +0 -20
  419. package/src/stories/Templates/FeaturesList/FeaturesList.css +0 -7
  420. package/src/stories/Templates/FeaturesList/FeaturesList.jsx +0 -24
  421. package/src/stories/Templates/FeaturesList/FeaturesList.stories.jsx +0 -20
  422. package/src/stories/Templates/FormSection/FormSection.css +0 -7
  423. package/src/stories/Templates/FormSection/FormSection.jsx +0 -24
  424. package/src/stories/Templates/FormSection/FormSection.stories.jsx +0 -20
  425. package/src/stories/Templates/HeroSection/HeroSection.css +0 -7
  426. package/src/stories/Templates/HeroSection/HeroSection.jsx +0 -24
  427. package/src/stories/Templates/HeroSection/HeroSection.stories.jsx +0 -20
  428. package/src/stories/Templates/LocationInfo/LocationInfo.css +0 -7
  429. package/src/stories/Templates/LocationInfo/LocationInfo.jsx +0 -24
  430. package/src/stories/Templates/LocationInfo/LocationInfo.stories.jsx +0 -20
  431. package/src/stories/Templates/ProductPage/ProductPage.css +0 -7
  432. package/src/stories/Templates/ProductPage/ProductPage.jsx +0 -24
  433. package/src/stories/Templates/ProductPage/ProductPage.stories.jsx +0 -20
  434. package/src/stories/Templates/RegistrationPage/RegistrationPage.css +0 -7
  435. package/src/stories/Templates/RegistrationPage/RegistrationPage.jsx +0 -24
  436. package/src/stories/Templates/RegistrationPage/RegistrationPage.stories.jsx +0 -20
  437. package/src/stories/Templates/ShoppingCart/ShoppingCart.css +0 -7
  438. package/src/stories/Templates/ShoppingCart/ShoppingCart.jsx +0 -24
  439. package/src/stories/Templates/ShoppingCart/ShoppingCart.stories.jsx +0 -20
  440. package/src/stories/Templates/SidebarTopNav/SidebarTopNav.css +0 -7
  441. package/src/stories/Templates/SidebarTopNav/SidebarTopNav.jsx +0 -24
  442. package/src/stories/Templates/SidebarTopNav/SidebarTopNav.stories.jsx +0 -20
  443. package/src/stories/Templates/SignInPage/SignInPage.css +0 -7
  444. package/src/stories/Templates/SignInPage/SignInPage.jsx +0 -24
  445. package/src/stories/Templates/SignInPage/SignInPage.stories.jsx +0 -20
  446. package/src/stories/Templates/SocialMediaLinks/SocialMediaLinks.css +0 -7
  447. package/src/stories/Templates/SocialMediaLinks/SocialMediaLinks.jsx +0 -24
  448. package/src/stories/Templates/SocialMediaLinks/SocialMediaLinks.stories.jsx +0 -20
  449. package/src/stories/Templates/Testimonials/Testimonials.css +0 -7
  450. package/src/stories/Templates/Testimonials/Testimonials.jsx +0 -24
  451. package/src/stories/Templates/Testimonials/Testimonials.stories.jsx +0 -20
  452. package/src/stories/Templates/index.js +0 -33
  453. package/src/stories/Templates/meta_Templates.js +0 -29
  454. package/src/stories/assets/accessibility.png +0 -0
  455. package/src/stories/assets/accessibility.svg +0 -1
  456. package/src/stories/assets/addon-library.png +0 -0
  457. package/src/stories/assets/assets.png +0 -0
  458. package/src/stories/assets/avif-test-image.avif +0 -0
  459. package/src/stories/assets/context.png +0 -0
  460. package/src/stories/assets/discord.svg +0 -1
  461. package/src/stories/assets/docs.png +0 -0
  462. package/src/stories/assets/figma-plugin.png +0 -0
  463. package/src/stories/assets/github.svg +0 -1
  464. package/src/stories/assets/logo.png +0 -0
  465. package/src/stories/assets/logo.svg +0 -106
  466. package/src/stories/assets/share.png +0 -0
  467. package/src/stories/assets/styling.png +0 -0
  468. package/src/stories/assets/test.svg +0 -3
  469. package/src/stories/assets/testing.png +0 -0
  470. package/src/stories/assets/theming.png +0 -0
  471. package/src/stories/assets/tutorials.svg +0 -1
  472. package/src/stories/assets/youtube.svg +0 -1
  473. package/src/themes/README_Styles.md +0 -301
  474. package/src/themes/ThemeProvider.jsx +0 -61
  475. package/src/themes/styles/github/dark.css +0 -0
  476. package/src/themes/styles/github/light.css +0 -0
  477. package/src/themes/styles/neurons/dark.css +0 -247
  478. package/src/themes/styles/neurons/light.css +0 -170
  479. /package/{src/themes/styles/dracula/dark.css → .storybook/preview-head.html} +0 -0
  480. /package/src/{themes/styles/dracula/light.css → components/this.me/MeCard.jsx} +0 -0
@@ -1,33 +0,0 @@
1
- // Import all template components directly from their root-level directories
2
- import { AdminDashboard } from './AdminDashboard/AdminDashboard';
3
- import { SidebarTopNav } from './SidebarTopNav/SidebarTopNav';
4
- import { ProductPage } from './ProductPage/ProductPage';
5
- import { ShoppingCart } from './ShoppingCart/ShoppingCart';
6
- import { SignInPage } from './SignInPage/SignInPage';
7
- import { RegistrationPage } from './RegistrationPage/RegistrationPage';
8
- import { HeroSection } from './HeroSection/HeroSection';
9
- import { FeaturesList } from './FeaturesList/FeaturesList';
10
- import { CallToAction } from './CallToAction/CallToAction';
11
- import { Testimonials } from './Testimonials/Testimonials';
12
- import { FormSection } from './FormSection/FormSection';
13
- import { LocationInfo } from './LocationInfo/LocationInfo';
14
- import { SocialMediaLinks } from './SocialMediaLinks/SocialMediaLinks';
15
-
16
- // Export all templates under a single object for easier import
17
- const Templates = {
18
- AdminDashboard,
19
- SidebarTopNav,
20
- ProductPage,
21
- ShoppingCart,
22
- SignInPage,
23
- RegistrationPage,
24
- HeroSection,
25
- FeaturesList,
26
- CallToAction,
27
- Testimonials,
28
- FormSection,
29
- LocationInfo,
30
- SocialMediaLinks,
31
- };
32
-
33
- export default Templates;
@@ -1,29 +0,0 @@
1
- const Templates = {
2
- "Templates": {
3
- "LandingPages": [
4
- { name: "HeroSection", paths: { css: "styles/Templates/LandingPages/HeroSection.css", globalCss: "styles/global.css", jsx: "src/components/Templates/LandingPages/HeroSection.jsx", stories: "src/stories/Templates/LandingPages/HeroSection.stories.jsx" }},
5
- { name: "FeaturesList", paths: { css: "styles/Templates/LandingPages/FeaturesList.css", globalCss: "styles/global.css", jsx: "src/components/Templates/LandingPages/FeaturesList.jsx", stories: "src/stories/Templates/LandingPages/FeaturesList.stories.jsx" }},
6
- { name: "CallToAction", paths: { css: "styles/Templates/LandingPages/CallToAction.css", globalCss: "styles/global.css", jsx: "src/components/Templates/LandingPages/CallToAction.jsx", stories: "src/stories/Templates/LandingPages/CallToAction.stories.jsx" }},
7
- { name: "Testimonials", paths: { css: "styles/Templates/LandingPages/Testimonials.css", globalCss: "styles/global.css", jsx: "src/components/Templates/LandingPages/Testimonials.jsx", stories: "src/stories/Templates/LandingPages/Testimonials.stories.jsx" }},
8
- ],
9
- "DashboardLayouts": [
10
- { name: "AdminDashboard", paths: { css: "styles/Templates/DashboardLayouts/AdminDashboard.css", globalCss: "styles/global.css", jsx: "src/components/Templates/DashboardLayouts/AdminDashboard.jsx", stories: "src/stories/Templates/DashboardLayouts/AdminDashboard.stories.jsx" }},
11
- { name: "SidebarTopNav", paths: { css: "styles/Templates/DashboardLayouts/SidebarTopNav.css", globalCss: "styles/global.css", jsx: "src/components/Templates/DashboardLayouts/SidebarTopNav.jsx", stories: "src/stories/Templates/DashboardLayouts/SidebarTopNav.stories.jsx" }},
12
- ],
13
- "ECommercePages": [
14
- { name: "ProductPage", paths: { css: "styles/Templates/ECommercePages/ProductPage.css", globalCss: "styles/global.css", jsx: "src/components/Templates/ECommercePages/ProductPage.jsx", stories: "src/stories/Templates/ECommercePages/ProductPage.stories.jsx" }},
15
- { name: "ShoppingCart", paths: { css: "styles/Templates/ECommercePages/ShoppingCart.css", globalCss: "styles/global.css", jsx: "src/components/Templates/ECommercePages/ShoppingCart.jsx", stories: "src/stories/Templates/ECommercePages/ShoppingCart.stories.jsx" }},
16
- ],
17
- "AuthenticationPages": [
18
- { name: "SignInPage", paths: { css: "styles/Templates/AuthenticationPages/SignInPage.css", globalCss: "styles/global.css", jsx: "src/components/Templates/AuthenticationPages/SignInPage.jsx", stories: "src/stories/Templates/AuthenticationPages/SignInPage.stories.jsx" }},
19
- { name: "RegistrationPage", paths: { css: "styles/Templates/AuthenticationPages/RegistrationPage.css", globalCss: "styles/global.css", jsx: "src/components/Templates/AuthenticationPages/RegistrationPage.jsx", stories: "src/stories/Templates/AuthenticationPages/RegistrationPage.stories.jsx" }},
20
- ],
21
- "ContactUsPages": [
22
- { name: "FormSection", paths: { css: "styles/Templates/ContactUsPages/FormSection.css", globalCss: "styles/global.css", jsx: "src/components/Templates/ContactUsPages/FormSection.jsx", stories: "src/stories/Templates/ContactUsPages/FormSection.stories.jsx" }},
23
- { name: "LocationInfo", paths: { css: "styles/Templates/ContactUsPages/LocationInfo.css", globalCss: "styles/global.css", jsx: "src/components/Templates/ContactUsPages/LocationInfo.jsx", stories: "src/stories/Templates/ContactUsPages/LocationInfo.stories.jsx" }},
24
- { name: "SocialMediaLinks", paths: { css: "styles/Templates/ContactUsPages/SocialMediaLinks.css", globalCss: "styles/global.css", jsx: "src/components/Templates/ContactUsPages/SocialMediaLinks.jsx", stories: "src/stories/Templates/ContactUsPages/SocialMediaLinks.stories.jsx" }},
25
- ]
26
- }
27
- }
28
-
29
- export default Templates;
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48"><title>Accessibility</title><circle cx="24.334" cy="24" r="24" fill="#A849FF" fill-opacity=".3"/><path fill="#A470D5" fill-rule="evenodd" d="M27.8609 11.585C27.8609 9.59506 26.2497 7.99023 24.2519 7.99023C22.254 7.99023 20.6429 9.65925 20.6429 11.585C20.6429 13.575 22.254 15.1799 24.2519 15.1799C26.2497 15.1799 27.8609 13.575 27.8609 11.585ZM21.8922 22.6473C21.8467 23.9096 21.7901 25.4788 21.5897 26.2771C20.9853 29.0462 17.7348 36.3314 17.3325 37.2275C17.1891 37.4923 17.1077 37.7955 17.1077 38.1178C17.1077 39.1519 17.946 39.9902 18.9802 39.9902C19.6587 39.9902 20.253 39.6293 20.5814 39.0889L20.6429 38.9874L24.2841 31.22C24.2841 31.22 27.5529 37.9214 27.9238 38.6591C28.2948 39.3967 28.8709 39.9902 29.7168 39.9902C30.751 39.9902 31.5893 39.1519 31.5893 38.1178C31.5893 37.7951 31.3639 37.2265 31.3639 37.2265C30.9581 36.3258 27.698 29.0452 27.0938 26.2771C26.8975 25.4948 26.847 23.9722 26.8056 22.7236C26.7927 22.333 26.7806 21.9693 26.7653 21.6634C26.7008 21.214 27.0231 20.8289 27.4097 20.7005L35.3366 18.3253C36.3033 18.0685 36.8834 16.9773 36.6256 16.0144C36.3678 15.0515 35.2722 14.4737 34.3055 14.7305C34.3055 14.7305 26.8619 17.1057 24.2841 17.1057C21.7062 17.1057 14.456 14.7947 14.456 14.7947C13.4893 14.5379 12.3937 14.9873 12.0715 15.9502C11.7493 16.9131 12.3293 18.0044 13.3604 18.3253L21.2873 20.7005C21.674 20.8289 21.9318 21.214 21.9318 21.6634C21.9174 21.9493 21.9053 22.2857 21.8922 22.6473Z" clip-rule="evenodd"/></svg>
Binary file
Binary file
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" fill="none" viewBox="0 0 33 32"><g clip-path="url(#clip0_10031_177575)"><mask id="mask0_10031_177575" style="mask-type:luminance" width="33" height="25" x="0" y="4" maskUnits="userSpaceOnUse"><path fill="#fff" d="M32.5034 4.00195H0.503906V28.7758H32.5034V4.00195Z"/></mask><g mask="url(#mask0_10031_177575)"><path fill="#5865F2" d="M27.5928 6.20817C25.5533 5.27289 23.3662 4.58382 21.0794 4.18916C21.0378 4.18154 20.9962 4.20057 20.9747 4.23864C20.6935 4.73863 20.3819 5.3909 20.1637 5.90358C17.7042 5.53558 15.2573 5.53558 12.8481 5.90358C12.6299 5.37951 12.307 4.73863 12.0245 4.23864C12.003 4.20184 11.9614 4.18281 11.9198 4.18916C9.63431 4.58255 7.44721 5.27163 5.40641 6.20817C5.38874 6.21578 5.3736 6.22848 5.36355 6.24497C1.21508 12.439 0.078646 18.4809 0.636144 24.4478C0.638667 24.477 0.655064 24.5049 0.677768 24.5227C3.41481 26.5315 6.06609 27.7511 8.66815 28.5594C8.70979 28.5721 8.75392 28.5569 8.78042 28.5226C9.39594 27.6826 9.94461 26.7968 10.4151 25.8653C10.4428 25.8107 10.4163 25.746 10.3596 25.7244C9.48927 25.3945 8.66058 24.9922 7.86343 24.5354C7.80038 24.4986 7.79533 24.4084 7.85333 24.3653C8.02108 24.2397 8.18888 24.109 8.34906 23.977C8.37804 23.9529 8.41842 23.9478 8.45249 23.963C13.6894 26.3526 19.359 26.3526 24.5341 23.963C24.5682 23.9465 24.6086 23.9516 24.6388 23.9757C24.799 24.1077 24.9668 24.2397 25.1358 24.3653C25.1938 24.4084 25.19 24.4986 25.127 24.5354C24.3298 25.0011 23.5011 25.3945 22.6296 25.7232C22.5728 25.7447 22.5476 25.8107 22.5754 25.8653C23.0559 26.7955 23.6046 27.6812 24.2087 28.5213C24.234 28.5569 24.2794 28.5721 24.321 28.5594C26.9357 27.7511 29.5869 26.5315 32.324 24.5227C32.348 24.5049 32.3631 24.4783 32.3656 24.4491C33.0328 17.5506 31.2481 11.5584 27.6344 6.24623C27.6256 6.22848 27.6105 6.21578 27.5928 6.20817ZM11.1971 20.8146C9.62043 20.8146 8.32129 19.3679 8.32129 17.5913C8.32129 15.8146 9.59523 14.368 11.1971 14.368C12.8115 14.368 14.0981 15.8273 14.0729 17.5913C14.0729 19.3679 12.7989 20.8146 11.1971 20.8146ZM21.8299 20.8146C20.2533 20.8146 18.9541 19.3679 18.9541 17.5913C18.9541 15.8146 20.228 14.368 21.8299 14.368C23.4444 14.368 24.7309 15.8273 24.7057 17.5913C24.7057 19.3679 23.4444 20.8146 21.8299 20.8146Z"/></g></g><defs><clipPath id="clip0_10031_177575"><rect width="32" height="32" fill="#fff" transform="translate(0.5)"/></clipPath></defs></svg>
Binary file
Binary file
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none" viewBox="0 0 32 32"><path fill="#161614" d="M16.0001 0C7.16466 0 0 7.17472 0 16.0256C0 23.1061 4.58452 29.1131 10.9419 31.2322C11.7415 31.3805 12.0351 30.8845 12.0351 30.4613C12.0351 30.0791 12.0202 28.8167 12.0133 27.4776C7.56209 28.447 6.62283 25.5868 6.62283 25.5868C5.89499 23.7345 4.8463 23.2419 4.8463 23.2419C3.39461 22.2473 4.95573 22.2678 4.95573 22.2678C6.56242 22.3808 7.40842 23.9192 7.40842 23.9192C8.83547 26.3691 11.1514 25.6609 12.0645 25.2514C12.2081 24.2156 12.6227 23.5087 13.0803 23.1085C9.52648 22.7032 5.7906 21.3291 5.7906 15.1886C5.7906 13.4389 6.41563 12.0094 7.43916 10.8871C7.27303 10.4834 6.72537 8.85349 7.59415 6.64609C7.59415 6.64609 8.93774 6.21539 11.9953 8.28877C13.2716 7.9337 14.6404 7.75563 16.0001 7.74953C17.3599 7.75563 18.7297 7.9337 20.0084 8.28877C23.0623 6.21539 24.404 6.64609 24.404 6.64609C25.2749 8.85349 24.727 10.4834 24.5608 10.8871C25.5868 12.0094 26.2075 13.4389 26.2075 15.1886C26.2075 21.3437 22.4645 22.699 18.9017 23.0957C19.4756 23.593 19.9869 24.5683 19.9869 26.0634C19.9869 28.2077 19.9684 29.9334 19.9684 30.4613C19.9684 30.8877 20.2564 31.3874 21.0674 31.2301C27.4213 29.1086 32 23.1037 32 16.0256C32 7.17472 24.8364 0 16.0001 0ZM5.99257 22.8288C5.95733 22.9084 5.83227 22.9322 5.71834 22.8776C5.60229 22.8253 5.53711 22.7168 5.57474 22.6369C5.60918 22.5549 5.7345 22.5321 5.85029 22.587C5.9666 22.6393 6.03284 22.7489 5.99257 22.8288ZM6.7796 23.5321C6.70329 23.603 6.55412 23.5701 6.45291 23.4581C6.34825 23.3464 6.32864 23.197 6.40601 23.125C6.4847 23.0542 6.62937 23.0874 6.73429 23.1991C6.83895 23.3121 6.85935 23.4605 6.7796 23.5321ZM7.31953 24.4321C7.2215 24.5003 7.0612 24.4363 6.96211 24.2938C6.86407 24.1513 6.86407 23.9804 6.96422 23.9119C7.06358 23.8435 7.2215 23.905 7.32191 24.0465C7.41968 24.1914 7.41968 24.3623 7.31953 24.4321ZM8.23267 25.4743C8.14497 25.5712 7.95818 25.5452 7.82146 25.413C7.68156 25.2838 7.64261 25.1004 7.73058 25.0035C7.81934 24.9064 8.00719 24.9337 8.14497 25.0648C8.28381 25.1938 8.3262 25.3785 8.23267 25.4743ZM9.41281 25.8262C9.37413 25.9517 9.19423 26.0088 9.013 25.9554C8.83203 25.9005 8.7136 25.7535 8.75016 25.6266C8.78778 25.5003 8.96848 25.4408 9.15104 25.4979C9.33174 25.5526 9.45044 25.6985 9.41281 25.8262ZM10.7559 25.9754C10.7604 26.1076 10.6067 26.2172 10.4165 26.2196C10.2252 26.2238 10.0704 26.1169 10.0683 25.9868C10.0683 25.8534 10.2185 25.7448 10.4098 25.7416C10.6001 25.7379 10.7559 25.8441 10.7559 25.9754ZM12.0753 25.9248C12.0981 26.0537 11.9658 26.1862 11.7769 26.2215C11.5912 26.2554 11.4192 26.1758 11.3957 26.0479C11.3726 25.9157 11.5072 25.7833 11.6927 25.7491C11.8819 25.7162 12.0512 25.7937 12.0753 25.9248Z"/></svg>
Binary file
@@ -1,106 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="292px" height="302px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
2
- <g><path style="opacity:1" fill="#53a398" d="M 223.5,33.5 C 224.08,35.7488 225.413,37.4154 227.5,38.5C 232.275,44.3782 235.775,51.0448 238,58.5C 240.705,61.0362 243.205,63.7029 245.5,66.5C 245.427,68.0269 246.094,69.0269 247.5,69.5C 247.738,71.4044 248.738,72.7377 250.5,73.5C 252.674,76.5154 254.341,79.8487 255.5,83.5C 255.41,86.1522 256.076,88.4855 257.5,90.5C 259.781,97.4294 260.114,104.596 258.5,112C 258.338,114.502 259.005,116.669 260.5,118.5C 260.738,120.404 261.738,121.738 263.5,122.5C 267.011,126.181 269.511,130.514 271,135.5C 276.643,157.196 270.643,174.862 253,188.5C 251.514,209.836 241.681,225.836 223.5,236.5C 221.952,236.821 221.285,237.821 221.5,239.5C 216.796,261.04 203.796,274.873 182.5,281C 169.059,284.748 155.893,283.915 143,278.5C 125.585,285.717 108.751,284.717 92.5,275.5C 92.0269,274.094 91.0269,273.427 89.5,273.5C 89.0269,272.094 88.0269,271.427 86.5,271.5C 81.8947,268.564 77.8947,264.898 74.5,260.5C 74.7148,258.821 74.0481,257.821 72.5,257.5C 68.3933,251.849 66.0599,245.516 65.5,238.5C 65.5,236.5 64.5,235.5 62.5,235.5C 61.5084,235.672 60.8417,235.338 60.5,234.5C 60.0269,233.094 59.0269,232.427 57.5,232.5C 56.5,232.167 55.8333,231.5 55.5,230.5C 55.0269,229.094 54.0269,228.427 52.5,228.5C 51.5,228.167 50.8333,227.5 50.5,226.5C 50.5,224.5 49.5,223.5 47.5,223.5C 47.1667,222.833 46.8333,222.167 46.5,221.5C 46.4456,219.368 45.4456,218.035 43.5,217.5C 43.7148,215.821 43.0481,214.821 41.5,214.5C 37.4851,208.102 35.4851,201.102 35.5,193.5C 35.6621,191.473 35.4955,189.473 35,187.5C 34.3292,186.748 33.4959,186.414 32.5,186.5C 29.5,184.167 26.8333,181.5 24.5,178.5C 24.4456,176.368 23.4456,175.035 21.5,174.5C 21.7148,172.821 21.0481,171.821 19.5,171.5C 12.6742,158.574 11.8409,145.241 17,131.5C 18.3063,128.379 20.1397,125.713 22.5,123.5C 23.9063,123.027 24.573,122.027 24.5,120.5C 25.4577,119.038 26.6244,117.705 28,116.5C 27.5627,109.141 27.7294,101.808 28.5,94.5C 29.9238,92.4855 30.5905,90.1522 30.5,87.5C 31.1571,82.1764 33.1571,77.5097 36.5,73.5C 37.9063,73.0269 38.573,72.0269 38.5,70.5C 39.9063,70.0269 40.573,69.0269 40.5,67.5C 42.8333,64.5 45.5,61.8333 48.5,59.5C 50.9754,58.3126 51.9754,56.3126 51.5,53.5C 52.2663,47.9672 54.5996,43.3005 58.5,39.5C 59.9063,39.0269 60.573,38.0269 60.5,36.5C 66.9532,28.1039 75.2865,22.4372 85.5,19.5C 88.1522,19.5905 90.4855,18.9238 92.5,17.5C 97.5271,16.1129 102.694,15.4462 108,15.5C 119.959,16.2799 131.793,17.9466 143.5,20.5C 157.979,17.0231 172.646,15.5231 187.5,16C 201.841,17.3386 213.841,23.172 223.5,33.5 Z M 132.5,37.5 C 133.828,65.931 133.828,94.2644 132.5,122.5C 132.027,121.094 131.027,120.427 129.5,120.5C 125.465,117.143 121.132,114.143 116.5,111.5C 115.564,110.026 114.23,109.026 112.5,108.5C 111.828,107.733 110.995,107.066 110,106.5C 109.808,96.7862 109.308,87.1195 108.5,77.5C 110.149,75.3501 111.982,73.3501 114,71.5C 117.116,64.5672 115.283,59.4006 108.5,56C 105.633,55.1993 102.966,55.3659 100.5,56.5C 98.9731,56.427 97.9731,57.0937 97.5,58.5C 96.0937,58.9731 95.427,59.9731 95.5,61.5C 94.661,62.6412 93.9943,63.9745 93.5,65.5C 93.6236,66.1067 93.9569,66.44 94.5,66.5C 94.2525,68.8583 94.9192,70.8583 96.5,72.5C 96.9731,73.9063 97.9731,74.573 99.5,74.5C 99.5,75.1667 99.8333,75.5 100.5,75.5C 100.216,83.0442 100.55,90.5442 101.5,98C 101.164,99.0299 100.497,99.5299 99.5,99.5C 98.5637,98.0256 97.2303,97.0256 95.5,96.5C 93.8767,95.2206 92.21,93.8872 90.5,92.5C 89.6858,90.2338 89.1858,87.9005 89,85.5C 88.6174,84.944 88.1174,84.6107 87.5,84.5C 87.573,82.9731 86.9063,81.9731 85.5,81.5C 83.7103,80.0027 81.5437,79.336 79,79.5C 77.2933,79.5085 75.7933,79.8418 74.5,80.5C 72.9731,80.427 71.9731,81.0937 71.5,82.5C 67.2202,87.8567 67.5535,92.8567 72.5,97.5C 72.9731,98.9063 73.9731,99.573 75.5,99.5C 78.8307,100.974 81.9973,100.641 85,98.5C 85.8159,99.8228 86.9826,100.489 88.5,100.5C 89.2623,102.262 90.5956,103.262 92.5,103.5C 92.9731,104.906 93.9731,105.573 95.5,105.5C 95.9731,106.906 96.9731,107.573 98.5,107.5C 99.2623,109.262 100.596,110.262 102.5,110.5C 102.973,111.906 103.973,112.573 105.5,112.5C 107.55,114.547 109.883,116.214 112.5,117.5C 112.973,118.906 113.973,119.573 115.5,119.5C 116.29,120.794 117.29,121.961 118.5,123C 117.944,123.383 117.611,123.883 117.5,124.5C 115.596,124.738 114.262,125.738 113.5,127.5C 111.596,127.738 110.262,128.738 109.5,130.5C 107.596,130.738 106.262,131.738 105.5,133.5C 101.293,135.435 97.6267,138.102 94.5,141.5C 91.6757,141.892 88.6757,141.892 85.5,141.5C 82.5701,140.701 79.5701,140.368 76.5,140.5C 73.997,139.629 71.3303,138.963 68.5,138.5C 67.7225,135.888 66.0559,134.055 63.5,133C 60.3035,132.195 57.3035,132.362 54.5,133.5C 52.9731,133.427 51.9731,134.094 51.5,135.5C 50.0937,135.973 49.427,136.973 49.5,138.5C 47.934,150.096 52.934,154.596 64.5,152C 66.2194,149.43 68.5527,147.93 71.5,147.5C 78.4887,148.582 85.4887,149.582 92.5,150.5C 94.299,150.423 95.9656,149.923 97.5,149C 107.196,141.824 116.863,134.658 126.5,127.5C 126.973,128.906 127.973,129.573 129.5,129.5C 129.973,130.906 130.973,131.573 132.5,131.5C 133.636,140.088 133.802,148.755 133,157.5C 132.283,158.044 131.783,158.711 131.5,159.5C 115.44,166.634 99.44,173.968 83.5,181.5C 80.1106,179.51 76.444,179.01 72.5,180C 71.0577,180.377 70.0577,181.21 69.5,182.5C 68.0937,182.973 67.427,183.973 67.5,185.5C 65.0214,193.851 68.1881,198.851 77,200.5C 83.7154,199.284 87.5487,195.284 88.5,188.5C 95.9252,184.787 103.259,181.121 110.5,177.5C 111.93,177.579 113.264,177.246 114.5,176.5C 115.829,184.445 116.495,192.445 116.5,200.5C 116.5,200.833 116.5,201.167 116.5,201.5C 114.926,203.102 114.259,205.102 114.5,207.5C 112.733,209.792 111.733,212.458 111.5,215.5C 100.321,217.18 97.1547,223.18 102,233.5C 114.205,239.736 120.205,236.069 120,222.5C 119.5,221.5 119,220.5 118.5,219.5C 120.571,214.286 122.238,208.953 123.5,203.5C 124.525,202.626 125.192,201.459 125.5,200C 124.219,195.623 124.219,191.289 125.5,187C 124.901,185.378 124.234,183.878 123.5,182.5C 123.177,178.774 123.511,175.107 124.5,171.5C 127.059,170.392 129.392,169.059 131.5,167.5C 132.833,182.819 133.499,198.485 133.5,214.5C 133.493,230.572 133.159,246.572 132.5,262.5C 118.8,265.695 106.466,263.028 95.5,254.5C 94.5,252.833 93.1667,251.5 91.5,250.5C 87.3871,243.805 84.0537,236.805 81.5,229.5C 81.573,227.973 80.9063,226.973 79.5,226.5C 79.573,224.973 78.9063,223.973 77.5,223.5C 72.8576,219.864 68.1909,216.197 63.5,212.5C 63.2624,210.596 62.2624,209.262 60.5,208.5C 60.573,206.973 59.9063,205.973 58.5,205.5C 57.9695,203.076 57.1362,200.743 56,198.5C 55.8311,191.476 55.3311,184.476 54.5,177.5C 48.2994,174.63 42.9661,170.63 38.5,165.5C 38.573,163.973 37.9063,162.973 36.5,162.5C 36.4431,161.391 36.1098,160.391 35.5,159.5C 35.2041,157.597 34.5375,155.93 33.5,154.5C 32.7009,144.099 35.8676,135.099 43,127.5C 44.8681,124.395 46.0348,121.062 46.5,117.5C 47.3425,114.674 48.0092,111.674 48.5,108.5C 47.6536,104.882 47.3203,101.215 47.5,97.5C 49.1726,84.1507 55.8393,74.1507 67.5,67.5C 69.0395,65.1617 69.7062,62.4951 69.5,59.5C 76.8457,42.6463 89.8457,34.6463 108.5,35.5C 116.546,35.6975 124.546,36.3642 132.5,37.5 Z M 202.5,40.5 C 202.973,41.9063 203.973,42.573 205.5,42.5C 207.167,44.8333 209.167,46.8333 211.5,48.5C 212.026,50.2303 213.026,51.5637 214.5,52.5C 218.524,62.1566 219.524,72.1566 217.5,82.5C 216.533,83.8062 215.199,84.4729 213.5,84.5C 209.781,82.7015 205.781,82.2015 201.5,83C 201.043,83.414 200.709,83.914 200.5,84.5C 202.73,85.7828 205.063,86.7828 207.5,87.5C 208.5,89.1667 209.833,90.5 211.5,91.5C 213.233,94.3827 214.566,97.3827 215.5,100.5C 215.18,103.898 215.513,107.232 216.5,110.5C 217.107,110.376 217.44,110.043 217.5,109.5C 219.746,107.351 221.246,104.684 222,101.5C 222.186,97.4841 222.186,93.4841 222,89.5C 224.833,86.6667 227.667,83.8333 230.5,81C 231.167,80.3333 231.833,80.3333 232.5,81C 239.491,91.7782 240.991,103.278 237,115.5C 234,121.167 231,126.833 228,132.5C 225.736,139.653 226.069,146.653 229,153.5C 230.61,150.403 231.61,147.069 232,143.5C 233.773,137.558 237.607,133.891 243.5,132.5C 246.102,132.467 248.102,133.467 249.5,135.5C 249.932,136.71 250.599,137.71 251.5,138.5C 254.352,146.642 254.019,154.642 250.5,162.5C 249.094,162.973 248.427,163.973 248.5,165.5C 247.5,165.833 246.833,166.5 246.5,167.5C 244.167,169.167 242.167,171.167 240.5,173.5C 225.897,182.441 211.23,182.607 196.5,174C 199.359,171.448 201.026,168.281 201.5,164.5C 202.451,163.081 202.784,161.415 202.5,159.5C 203.874,157.483 203.707,155.483 202,153.5C 201.536,154.094 201.369,154.761 201.5,155.5C 200.662,155.842 200.328,156.508 200.5,157.5C 199.094,157.973 198.427,158.973 198.5,160.5C 197.512,161.795 196.512,163.128 195.5,164.5C 193.4,166.616 191.067,168.283 188.5,169.5C 184.989,169.899 181.656,170.566 178.5,171.5C 176.663,171.639 176.33,172.306 177.5,173.5C 182.582,175.745 187.915,177.078 193.5,177.5C 194.855,179.521 196.521,181.188 198.5,182.5C 198.973,183.906 199.973,184.573 201.5,184.5C 204.675,187.328 208.342,189.328 212.5,190.5C 214.515,191.924 216.848,192.59 219.5,192.5C 221.717,193.369 224.05,193.702 226.5,193.5C 228.531,193.972 230.198,194.972 231.5,196.5C 230.219,201.729 227.885,206.396 224.5,210.5C 223.094,210.973 222.427,211.973 222.5,213.5C 221.5,213.833 220.833,214.5 220.5,215.5C 218.596,215.738 217.262,216.738 216.5,218.5C 214.973,218.427 213.973,219.094 213.5,220.5C 211.847,220.66 210.514,221.326 209.5,222.5C 206.603,223.129 203.936,224.129 201.5,225.5C 199.435,225.517 197.435,225.85 195.5,226.5C 188.196,227.302 180.862,227.635 173.5,227.5C 173.167,227.5 172.833,227.5 172.5,227.5C 170.712,226.378 168.712,226.211 166.5,227C 167.044,227.717 167.711,228.217 168.5,228.5C 177.173,233.002 186.506,235.335 196.5,235.5C 198.531,235.972 200.198,236.972 201.5,238.5C 200.041,242.752 198.041,246.752 195.5,250.5C 193.167,252.167 191.167,254.167 189.5,256.5C 187.973,256.427 186.973,257.094 186.5,258.5C 176.646,263.597 166.313,264.763 155.5,262C 153.818,256.328 153.151,250.494 153.5,244.5C 153.333,196.832 153.5,149.166 154,101.5C 157.603,100.865 161.103,100.198 164.5,99.5C 169.506,98.8285 173.839,96.8285 177.5,93.5C 179.048,93.1788 179.715,92.1788 179.5,90.5C 177.901,90.2322 176.568,90.5655 175.5,91.5C 167.708,92.8717 161.041,90.8717 155.5,85.5C 155.217,84.7109 154.717,84.0442 154,83.5C 153.184,68.0923 153.351,52.759 154.5,37.5C 166.11,35.7805 177.777,35.2805 189.5,36C 194.033,37.0107 198.367,38.5107 202.5,40.5 Z M 106.5,63.5 C 107.805,66.8711 106.471,68.2045 102.5,67.5C 102.167,64.5 103.5,63.1667 106.5,63.5 Z M 80.5,87.5 C 81.2341,88.7079 81.5674,90.0413 81.5,91.5C 79.8333,91.5 78.1667,91.5 76.5,91.5C 76.1667,88.5 77.5,87.1667 80.5,87.5 Z M 60.5,140.5 C 61.2341,141.708 61.5674,143.041 61.5,144.5C 58.7287,145.773 57.062,144.773 56.5,141.5C 57.7079,140.766 59.0413,140.433 60.5,140.5 Z M 78.5,187.5 C 79.8166,189.876 79.1499,191.543 76.5,192.5C 74.7274,191.686 74.2274,190.352 75,188.5C 76.0113,187.663 77.1779,187.33 78.5,187.5 Z M 111.5,223.5 C 112.234,224.708 112.567,226.041 112.5,227.5C 110.833,228.833 109.167,228.833 107.5,227.5C 107.5,226.5 107.5,225.5 107.5,224.5C 108.833,224.167 110.167,223.833 111.5,223.5 Z"/></g>
3
- <g><path style="opacity:0.816" fill="#96c5bf" d="M 92.5,17.5 C 90.4855,18.9238 88.1522,19.5905 85.5,19.5C 87.5145,18.0762 89.8478,17.4095 92.5,17.5 Z"/></g>
4
- <g><path style="opacity:0.733" fill="#a5ccc8" d="M 223.5,33.5 C 225.587,34.5846 226.92,36.2512 227.5,38.5C 225.413,37.4154 224.08,35.7488 223.5,33.5 Z"/></g>
5
- <g><path style="opacity:0.494" fill="#9dc8c3" d="M 60.5,36.5 C 60.573,38.0269 59.9063,39.0269 58.5,39.5C 58.427,37.9731 59.0937,36.9731 60.5,36.5 Z"/></g>
6
- <g><path style="opacity:0.38" fill="#a9cecb" d="M 202.5,40.5 C 204.027,40.427 205.027,41.0937 205.5,42.5C 203.973,42.573 202.973,41.9063 202.5,40.5 Z"/></g>
7
- <g><path style="opacity:0.925" fill="#97c5bf" d="M 211.5,48.5 C 213.446,49.0347 214.446,50.368 214.5,52.5C 213.026,51.5637 212.026,50.2303 211.5,48.5 Z"/></g>
8
- <g><path style="opacity:0.965" fill="#88bdb6" d="M 51.5,53.5 C 51.9754,56.3126 50.9754,58.3126 48.5,59.5C 49.5082,57.4561 50.5082,55.4561 51.5,53.5 Z"/></g>
9
- <g><path style="opacity:0.757" fill="#97c5c0" d="M 100.5,56.5 C 100.027,57.9063 99.0269,58.573 97.5,58.5C 97.9731,57.0937 98.9731,56.427 100.5,56.5 Z"/></g>
10
- <g><path style="opacity:0.494" fill="#9cc7c3" d="M 97.5,58.5 C 97.573,60.0269 96.9063,61.0269 95.5,61.5C 95.427,59.9731 96.0937,58.9731 97.5,58.5 Z"/></g>
11
- <g><path style="opacity:0.522" fill="#add0cd" d="M 69.5,59.5 C 69.7062,62.4951 69.0395,65.1617 67.5,67.5C 67.5651,64.5718 68.2318,61.9052 69.5,59.5 Z"/></g>
12
- <g><path style="opacity:0.773" fill="#9dc8c4" d="M 95.5,61.5 C 95.634,63.2915 95.3007,64.9582 94.5,66.5C 93.9569,66.44 93.6236,66.1067 93.5,65.5C 93.9943,63.9745 94.661,62.6412 95.5,61.5 Z"/></g>
13
- <g><path style="opacity:0.57" fill="#86bdb7" d="M 132.5,37.5 C 133.833,51.4841 134.499,65.8174 134.5,80.5C 134.167,94.8333 133.833,109.167 133.5,123.5C 132.893,123.376 132.56,123.043 132.5,122.5C 133.828,94.2644 133.828,65.931 132.5,37.5 Z"/></g>
14
- <g><path style="opacity:0.649" fill="#7eb9b2" d="M 154.5,37.5 C 153.351,52.759 153.184,68.0923 154,83.5C 154.717,84.0442 155.217,84.7109 155.5,85.5C 154.504,85.5858 153.671,85.2524 153,84.5C 152.833,76.6667 152.667,68.8333 152.5,61C 152.502,52.8037 153.169,44.9703 154.5,37.5 Z"/></g>
15
- <g><path style="opacity:0.012" fill="#b7d5d3" d="M 106.5,63.5 C 109.266,66.0672 108.766,68.0672 105,69.5C 103.699,69.3613 102.866,68.6946 102.5,67.5C 106.471,68.2045 107.805,66.8711 106.5,63.5 Z"/></g>
16
- <g><path style="opacity:0.49" fill="#9fc9c5" d="M 245.5,66.5 C 246.906,66.9731 247.573,67.9731 247.5,69.5C 246.094,69.0269 245.427,68.0269 245.5,66.5 Z"/></g>
17
- <g><path style="opacity:0.333" fill="#aed1ce" d="M 40.5,67.5 C 40.573,69.0269 39.9063,70.0269 38.5,70.5C 38.427,68.9731 39.0937,67.9731 40.5,67.5 Z"/></g>
18
- <g><path style="opacity:0.675" fill="#96c4bf" d="M 247.5,69.5 C 249.262,70.2623 250.262,71.5956 250.5,73.5C 248.738,72.7377 247.738,71.4044 247.5,69.5 Z"/></g>
19
- <g><path style="opacity:0.38" fill="#a8ceca" d="M 38.5,70.5 C 38.573,72.0269 37.9063,73.0269 36.5,73.5C 36.427,71.9731 37.0937,70.9731 38.5,70.5 Z"/></g>
20
- <g><path style="opacity:0.729" fill="#9dc8c3" d="M 96.5,72.5 C 98.0269,72.427 99.0269,73.0937 99.5,74.5C 97.9731,74.573 96.9731,73.9063 96.5,72.5 Z"/></g>
21
- <g><path style="opacity:0.706" fill="#9ec9c4" d="M 74.5,80.5 C 74.0269,81.9063 73.0269,82.573 71.5,82.5C 71.9731,81.0937 72.9731,80.427 74.5,80.5 Z"/></g>
22
- <g><path style="opacity:0.761" fill="#97c5c0" d="M 85.5,81.5 C 86.9063,81.9731 87.573,82.9731 87.5,84.5C 86.0937,84.0269 85.427,83.0269 85.5,81.5 Z"/></g>
23
- <g><path style="opacity:1" fill="#85bcb4" d="M 217.5,82.5 C 217.677,86.9099 216.343,87.5766 213.5,84.5C 215.199,84.4729 216.533,83.8062 217.5,82.5 Z"/></g>
24
- <g><path style="opacity:0.91" fill="#8fc1bb" d="M 255.5,83.5 C 256.924,85.5145 257.59,87.8478 257.5,90.5C 256.076,88.4855 255.41,86.1522 255.5,83.5 Z"/></g>
25
- <g><path style="opacity:0.843" fill="#9cc8c3" d="M 207.5,87.5 C 209.833,87.8333 211.167,89.1667 211.5,91.5C 209.833,90.5 208.5,89.1667 207.5,87.5 Z"/></g>
26
- <g><path style="opacity:0.212" fill="#a6ccc8" d="M 80.5,87.5 C 81.5862,87.62 82.2528,88.2867 82.5,89.5C 82.4573,90.4164 82.1239,91.0831 81.5,91.5C 81.5674,90.0413 81.2341,88.7079 80.5,87.5 Z"/></g>
27
- <g><path style="opacity:0.01" fill="#cde0e0" d="M 175.5,91.5 C 176.568,90.5655 177.901,90.2322 179.5,90.5C 179.715,92.1788 179.048,93.1788 177.5,93.5C 178.66,91.7973 177.993,91.1307 175.5,91.5 Z"/></g>
28
- <g><path style="opacity:0.722" fill="#99c6c1" d="M 100.5,75.5 C 102.524,83.9636 102.857,92.6302 101.5,101.5C 100.478,101.145 99.811,100.478 99.5,99.5C 100.497,99.5299 101.164,99.0299 101.5,98C 100.55,90.5442 100.216,83.0442 100.5,75.5 Z"/></g>
29
- <g><path style="opacity:0.463" fill="#9dc8c3" d="M 30.5,87.5 C 30.5905,90.1522 29.9238,92.4855 28.5,94.5C 28.4095,91.8478 29.0762,89.5145 30.5,87.5 Z"/></g>
30
- <g><path style="opacity:0.922" fill="#9cc7c2" d="M 95.5,96.5 C 97.2303,97.0256 98.5637,98.0256 99.5,99.5C 97.368,99.4456 96.0347,98.4456 95.5,96.5 Z"/></g>
31
- <g><path style="opacity:0.333" fill="#a7cdc9" d="M 72.5,97.5 C 74.0269,97.427 75.0269,98.0937 75.5,99.5C 73.9731,99.573 72.9731,98.9063 72.5,97.5 Z"/></g>
32
- <g><path style="opacity:0.631" fill="#9ac6c1" d="M 88.5,100.5 C 90.4044,100.738 91.7377,101.738 92.5,103.5C 90.5956,103.262 89.2623,102.262 88.5,100.5 Z"/></g>
33
- <g><path style="opacity:0.443" fill="#a3cbc7" d="M 92.5,103.5 C 94.0269,103.427 95.0269,104.094 95.5,105.5C 93.9731,105.573 92.9731,104.906 92.5,103.5 Z"/></g>
34
- <g><path style="opacity:0.443" fill="#9fc9c5" d="M 215.5,100.5 C 216.167,103.5 216.833,106.5 217.5,109.5C 217.44,110.043 217.107,110.376 216.5,110.5C 215.513,107.232 215.18,103.898 215.5,100.5 Z"/></g>
35
- <g><path style="opacity:0.557" fill="#97c5c0" d="M 95.5,105.5 C 97.0269,105.427 98.0269,106.094 98.5,107.5C 96.9731,107.573 95.9731,106.906 95.5,105.5 Z"/></g>
36
- <g><path style="opacity:0.859" fill="#85bcb5" d="M 47.5,97.5 C 47.3203,101.215 47.6536,104.882 48.5,108.5C 48.0092,111.674 47.3425,114.674 46.5,117.5C 46.176,110.646 46.5093,103.979 47.5,97.5 Z"/></g>
37
- <g><path style="opacity:0.682" fill="#96c5bf" d="M 98.5,107.5 C 100.404,107.738 101.738,108.738 102.5,110.5C 100.596,110.262 99.2623,109.262 98.5,107.5 Z"/></g>
38
- <g><path style="opacity:0.914" fill="#99c6c0" d="M 112.5,108.5 C 114.23,109.026 115.564,110.026 116.5,111.5C 114.368,111.446 113.035,110.446 112.5,108.5 Z"/></g>
39
- <g><path style="opacity:0.475" fill="#9fc9c5" d="M 102.5,110.5 C 104.027,110.427 105.027,111.094 105.5,112.5C 103.973,112.573 102.973,111.906 102.5,110.5 Z"/></g>
40
- <g><path style="opacity:0.506" fill="#9bc7c2" d="M 112.5,117.5 C 114.027,117.427 115.027,118.094 115.5,119.5C 113.973,119.573 112.973,118.906 112.5,117.5 Z"/></g>
41
- <g><path style="opacity:0.816" fill="#9bc7c2" d="M 260.5,118.5 C 262.262,119.262 263.262,120.596 263.5,122.5C 261.738,121.738 260.738,120.404 260.5,118.5 Z"/></g>
42
- <g><path style="opacity:0.627" fill="#9ac7c1" d="M 115.5,119.5 C 119.469,120.412 120.136,122.079 117.5,124.5C 117.611,123.883 117.944,123.383 118.5,123C 117.29,121.961 116.29,120.794 115.5,119.5 Z"/></g>
43
- <g><path style="opacity:0.004" fill="#c8dedd" d="M 129.5,120.5 C 131.027,120.427 132.027,121.094 132.5,122.5C 130.973,122.573 129.973,121.906 129.5,120.5 Z"/></g>
44
- <g><path style="opacity:0.643" fill="#a4ccc8" d="M 24.5,120.5 C 24.573,122.027 23.9063,123.027 22.5,123.5C 22.427,121.973 23.0937,120.973 24.5,120.5 Z"/></g>
45
- <g><path style="opacity:0.596" fill="#9dc8c3" d="M 117.5,124.5 C 116.738,126.262 115.404,127.262 113.5,127.5C 114.262,125.738 115.596,124.738 117.5,124.5 Z"/></g>
46
- <g><path style="opacity:0.651" fill="#99c6c1" d="M 113.5,127.5 C 112.738,129.262 111.404,130.262 109.5,130.5C 110.262,128.738 111.596,127.738 113.5,127.5 Z"/></g>
47
- <g><path style="opacity:0.369" fill="#abcfcc" d="M 126.5,127.5 C 128.027,127.427 129.027,128.094 129.5,129.5C 127.973,129.573 126.973,128.906 126.5,127.5 Z"/></g>
48
- <g><path style="opacity:0.467" fill="#a0c9c5" d="M 129.5,129.5 C 131.027,129.427 132.027,130.094 132.5,131.5C 130.973,131.573 129.973,130.906 129.5,129.5 Z"/></g>
49
- <g><path style="opacity:0.682" fill="#96c4bf" d="M 109.5,130.5 C 108.738,132.262 107.404,133.262 105.5,133.5C 106.262,131.738 107.596,130.738 109.5,130.5 Z"/></g>
50
- <g><path style="opacity:0.539" fill="#8fc2bc" d="M 132.5,131.5 C 133.826,135.614 134.493,140.114 134.5,145C 134.333,149.5 134.167,154 134,158.5C 133.329,159.252 132.496,159.586 131.5,159.5C 131.783,158.711 132.283,158.044 133,157.5C 133.802,148.755 133.636,140.088 132.5,131.5 Z"/></g>
51
- <g><path style="opacity:0.757" fill="#98c5c0" d="M 54.5,133.5 C 54.0269,134.906 53.0269,135.573 51.5,135.5C 51.9731,134.094 52.9731,133.427 54.5,133.5 Z"/></g>
52
- <g><path style="opacity:0.89" fill="#97c4be" d="M 249.5,135.5 C 251.048,135.821 251.715,136.821 251.5,138.5C 250.599,137.71 249.932,136.71 249.5,135.5 Z"/></g>
53
- <g><path style="opacity:0.267" fill="#b1d2cf" d="M 51.5,135.5 C 51.573,137.027 50.9063,138.027 49.5,138.5C 49.427,136.973 50.0937,135.973 51.5,135.5 Z"/></g>
54
- <g><path style="opacity:0.565" fill="#abcfcc" d="M 68.5,138.5 C 71.3303,138.963 73.997,139.629 76.5,140.5C 74.1432,140.663 71.8098,140.497 69.5,140C 68.944,139.617 68.6107,139.117 68.5,138.5 Z"/></g>
55
- <g><path style="opacity:0.192" fill="#a9ceca" d="M 60.5,140.5 C 61.5862,140.62 62.2528,141.287 62.5,142.5C 62.4573,143.416 62.1239,144.083 61.5,144.5C 61.5674,143.041 61.2341,141.708 60.5,140.5 Z"/></g>
56
- <g><path style="opacity:0.686" fill="#9cc8c3" d="M 85.5,141.5 C 88.6757,141.892 91.6757,141.892 94.5,141.5C 94.1344,142.695 93.301,143.361 92,143.5C 89.6539,143.01 87.4872,142.343 85.5,141.5 Z"/></g>
57
- <g><path style="opacity:0.549" fill="#9dc8c4" d="M 56.5,141.5 C 57.062,144.773 58.7287,145.773 61.5,144.5C 58.9328,147.266 56.9328,146.766 55.5,143C 55.5699,142.235 55.9033,141.735 56.5,141.5 Z"/></g>
58
- <g><path style="opacity:0.024" fill="#cfe1e1" d="M 202.5,159.5 C 202.768,157.901 202.434,156.568 201.5,155.5C 201.369,154.761 201.536,154.094 202,153.5C 203.707,155.483 203.874,157.483 202.5,159.5 Z"/></g>
59
- <g><path style="opacity:0.784" fill="#82bbb3" d="M 201.5,155.5 C 202.434,156.568 202.768,157.901 202.5,159.5C 202.784,161.415 202.451,163.081 201.5,164.5C 201.802,161.941 201.468,159.607 200.5,157.5C 200.328,156.508 200.662,155.842 201.5,155.5 Z"/></g>
60
- <g><path style="opacity:0.82" fill="#9ac6c1" d="M 33.5,154.5 C 34.5375,155.93 35.2041,157.597 35.5,159.5C 33.7868,158.365 33.1201,156.698 33.5,154.5 Z"/></g>
61
- <g><path style="opacity:0.275" fill="#acd0cd" d="M 200.5,157.5 C 200.573,159.027 199.906,160.027 198.5,160.5C 198.427,158.973 199.094,157.973 200.5,157.5 Z"/></g>
62
- <g><path style="opacity:0.393" fill="#96c5c0" d="M 164.5,99.5 C 161.103,100.198 157.603,100.865 154,101.5C 153.5,149.166 153.333,196.832 153.5,244.5C 152.335,196.668 152.168,148.668 153,100.5C 156.73,99.5399 160.563,99.2065 164.5,99.5 Z"/></g>
63
- <g><path style="opacity:0.518" fill="#99c6c1" d="M 36.5,162.5 C 37.9063,162.973 38.573,163.973 38.5,165.5C 37.0937,165.027 36.427,164.027 36.5,162.5 Z"/></g>
64
- <g><path style="opacity:0.518" fill="#99c6c1" d="M 250.5,162.5 C 250.573,164.027 249.906,165.027 248.5,165.5C 248.427,163.973 249.094,162.973 250.5,162.5 Z"/></g>
65
- <g><path style="opacity:0.965" fill="#86bcb5" d="M 195.5,164.5 C 194.57,168.093 192.237,169.759 188.5,169.5C 191.067,168.283 193.4,166.616 195.5,164.5 Z"/></g>
66
- <g><path style="opacity:0.788" fill="#a5ccc8" d="M 188.5,169.5 C 188.082,170.222 187.416,170.722 186.5,171C 183.854,171.497 181.187,171.664 178.5,171.5C 181.656,170.566 184.989,169.899 188.5,169.5 Z"/></g>
67
- <g><path style="opacity:0.639" fill="#99c6c1" d="M 246.5,167.5 C 245.5,170.5 243.5,172.5 240.5,173.5C 242.167,171.167 244.167,169.167 246.5,167.5 Z"/></g>
68
- <g><path style="opacity:0.902" fill="#98c5bf" d="M 19.5,171.5 C 21.0481,171.821 21.7148,172.821 21.5,174.5C 20.5987,173.71 19.9321,172.71 19.5,171.5 Z"/></g>
69
- <g><path style="opacity:0.953" fill="#98c5c0" d="M 21.5,174.5 C 23.4456,175.035 24.4456,176.368 24.5,178.5C 23.0256,177.564 22.0256,176.23 21.5,174.5 Z"/></g>
70
- <g><path style="opacity:0.306" fill="#b2d3d0" d="M 116.5,200.5 C 116.495,192.445 115.829,184.445 114.5,176.5C 113.264,177.246 111.93,177.579 110.5,177.5C 111.937,176.275 113.604,175.275 115.5,174.5C 117.356,183.276 117.69,191.942 116.5,200.5 Z"/></g>
71
- <g><path style="opacity:0.718" fill="#9ec9c4" d="M 198.5,182.5 C 200.027,182.427 201.027,183.094 201.5,184.5C 199.973,184.573 198.973,183.906 198.5,182.5 Z"/></g>
72
- <g><path style="opacity:0.4" fill="#a4ccc7" d="M 69.5,182.5 C 69.573,184.027 68.9063,185.027 67.5,185.5C 67.427,183.973 68.0937,182.973 69.5,182.5 Z"/></g>
73
- <g><path style="opacity:0.012" fill="#c6dcdb" d="M 32.5,186.5 C 33.4959,186.414 34.3292,186.748 35,187.5C 35.4955,189.473 35.6621,191.473 35.5,193.5C 34.8689,191.066 33.8689,188.732 32.5,186.5 Z"/></g>
74
- <g><path style="opacity:0.365" fill="#b0d1ce" d="M 78.5,187.5 C 80.3442,188.204 80.8442,189.537 80,191.5C 78.9887,192.337 77.8221,192.67 76.5,192.5C 79.1499,191.543 79.8166,189.876 78.5,187.5 Z"/></g>
75
- <g><path style="opacity:0.553" fill="#a1cac6" d="M 212.5,190.5 C 215.152,190.41 217.485,191.076 219.5,192.5C 216.848,192.59 214.515,191.924 212.5,190.5 Z"/></g>
76
- <g><path style="opacity:0.01" fill="#d5e4e5" d="M 226.5,193.5 C 228.5,193.5 230.5,193.5 232.5,193.5C 232.737,194.791 232.404,195.791 231.5,196.5C 230.198,194.972 228.531,193.972 226.5,193.5 Z"/></g>
77
- <g><path style="opacity:0.596" fill="#86bdb7" d="M 131.5,167.5 C 132.209,166.596 133.209,166.263 134.5,166.5C 135.159,198.851 134.493,230.851 132.5,262.5C 133.159,246.572 133.493,230.572 133.5,214.5C 133.499,198.485 132.833,182.819 131.5,167.5 Z"/></g>
78
- <g><path style="opacity:0.688" fill="#aacfcb" d="M 123.5,182.5 C 124.234,183.878 124.901,185.378 125.5,187C 124.219,191.289 124.219,195.623 125.5,200C 125.192,201.459 124.525,202.626 123.5,203.5C 123.5,196.5 123.5,189.5 123.5,182.5 Z"/></g>
79
- <g><path style="opacity:0.961" fill="#88bdb6" d="M 116.5,201.5 C 116.741,203.898 116.074,205.898 114.5,207.5C 114.259,205.102 114.926,203.102 116.5,201.5 Z"/></g>
80
- <g><path style="opacity:0.412" fill="#a0c9c5" d="M 58.5,205.5 C 59.9063,205.973 60.573,206.973 60.5,208.5C 59.0937,208.027 58.427,207.027 58.5,205.5 Z"/></g>
81
- <g><path style="opacity:0.804" fill="#98c6c0" d="M 60.5,208.5 C 62.2624,209.262 63.2624,210.596 63.5,212.5C 61.7376,211.738 60.7376,210.404 60.5,208.5 Z"/></g>
82
- <g><path style="opacity:0.561" fill="#add0cd" d="M 224.5,210.5 C 224.573,212.027 223.906,213.027 222.5,213.5C 222.427,211.973 223.094,210.973 224.5,210.5 Z"/></g>
83
- <g><path style="opacity:0.886" fill="#97c5bf" d="M 41.5,214.5 C 43.0481,214.821 43.7148,215.821 43.5,217.5C 42.5987,216.71 41.9321,215.71 41.5,214.5 Z"/></g>
84
- <g><path style="opacity:0.596" fill="#9ac7c2" d="M 220.5,215.5 C 219.738,217.262 218.404,218.262 216.5,218.5C 217.262,216.738 218.596,215.738 220.5,215.5 Z"/></g>
85
- <g><path style="opacity:0.925" fill="#98c5c0" d="M 43.5,217.5 C 45.4456,218.035 46.4456,219.368 46.5,221.5C 45.0256,220.564 44.0256,219.23 43.5,217.5 Z"/></g>
86
- <g><path style="opacity:0.682" fill="#9dc8c3" d="M 216.5,218.5 C 216.027,219.906 215.027,220.573 213.5,220.5C 213.973,219.094 214.973,218.427 216.5,218.5 Z"/></g>
87
- <g><path style="opacity:0.498" fill="#b2d3d0" d="M 47.5,223.5 C 49.5,223.5 50.5,224.5 50.5,226.5C 49.1667,225.833 48.1667,224.833 47.5,223.5 Z"/></g>
88
- <g><path style="opacity:0.004" fill="#bad7d5" d="M 111.5,223.5 C 110.167,223.833 108.833,224.167 107.5,224.5C 108.538,222.481 109.872,222.147 111.5,223.5 Z"/></g>
89
- <g><path style="opacity:0.671" fill="#a1cac6" d="M 77.5,223.5 C 78.9063,223.973 79.573,224.973 79.5,226.5C 78.0937,226.027 77.427,225.027 77.5,223.5 Z"/></g>
90
- <g><path style="opacity:0.851" fill="#8abeb8" d="M 209.5,222.5 C 207.383,224.655 204.716,225.655 201.5,225.5C 203.936,224.129 206.603,223.129 209.5,222.5 Z"/></g>
91
- <g><path style="opacity:0.365" fill="#bdd8d7" d="M 172.5,227.5 C 170.901,227.232 169.568,227.566 168.5,228.5C 167.711,228.217 167.044,227.717 166.5,227C 168.712,226.211 170.712,226.378 172.5,227.5 Z"/></g>
92
- <g><path style="opacity:0.8" fill="#9dc8c4" d="M 195.5,226.5 C 191.44,228.017 187.107,228.684 182.5,228.5C 179.314,228.498 176.314,228.165 173.5,227.5C 180.862,227.635 188.196,227.302 195.5,226.5 Z"/></g>
93
- <g><path style="opacity:0.588" fill="#aacfcb" d="M 52.5,228.5 C 54.0269,228.427 55.0269,229.094 55.5,230.5C 53.9731,230.573 52.9731,229.906 52.5,228.5 Z"/></g>
94
- <g><path style="opacity:0.38" fill="#a3cbc7" d="M 79.5,226.5 C 80.9063,226.973 81.573,227.973 81.5,229.5C 80.0937,229.027 79.427,228.027 79.5,226.5 Z"/></g>
95
- <g><path style="opacity:0.098" fill="#aacecb" d="M 107.5,227.5 C 109.167,228.833 110.833,228.833 112.5,227.5C 112.209,228.649 111.376,229.316 110,229.5C 108.624,229.316 107.791,228.649 107.5,227.5 Z"/></g>
96
- <g><path style="opacity:0.325" fill="#aed0cd" d="M 57.5,232.5 C 59.0269,232.427 60.0269,233.094 60.5,234.5C 58.9731,234.573 57.9731,233.906 57.5,232.5 Z"/></g>
97
- <g><path style="opacity:0.018" fill="#d6e5e5" d="M 196.5,235.5 C 198.5,235.5 200.5,235.5 202.5,235.5C 202.737,236.791 202.404,237.791 201.5,238.5C 200.198,236.972 198.531,235.972 196.5,235.5 Z"/></g>
98
- <g><path style="opacity:0.549" fill="#9ec9c4" d="M 62.5,235.5 C 64.5,235.5 65.5,236.5 65.5,238.5C 64.1667,237.833 63.1667,236.833 62.5,235.5 Z"/></g>
99
- <g><path style="opacity:0.157" fill="#c0d9d8" d="M 223.5,236.5 C 223.068,237.71 222.401,238.71 221.5,239.5C 221.285,237.821 221.952,236.821 223.5,236.5 Z"/></g>
100
- <g><path style="opacity:0.718" fill="#a6cdc9" d="M 91.5,250.5 C 93.1667,251.5 94.5,252.833 95.5,254.5C 93.1667,254.167 91.8333,252.833 91.5,250.5 Z"/></g>
101
- <g><path style="opacity:0.776" fill="#90c2bc" d="M 195.5,250.5 C 194.5,253.5 192.5,255.5 189.5,256.5C 191.167,254.167 193.167,252.167 195.5,250.5 Z"/></g>
102
- <g><path style="opacity:0.898" fill="#98c5bf" d="M 72.5,257.5 C 74.0481,257.821 74.7148,258.821 74.5,260.5C 73.5987,259.71 72.9321,258.71 72.5,257.5 Z"/></g>
103
- <g><path style="opacity:0.753" fill="#96c5bf" d="M 189.5,256.5 C 189.027,257.906 188.027,258.573 186.5,258.5C 186.973,257.094 187.973,256.427 189.5,256.5 Z"/></g>
104
- <g><path style="opacity:0.51" fill="#98c6c1" d="M 86.5,271.5 C 88.0269,271.427 89.0269,272.094 89.5,273.5C 87.9731,273.573 86.9731,272.906 86.5,271.5 Z"/></g>
105
- <g><path style="opacity:0.435" fill="#9fc9c4" d="M 89.5,273.5 C 91.0269,273.427 92.0269,274.094 92.5,275.5C 90.9731,275.573 89.9731,274.906 89.5,273.5 Z"/></g>
106
- </svg>
Binary file
Binary file
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="currentColor">
2
- <circle cx="50" cy="50" r="40"/>
3
- </svg>
Binary file
Binary file
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" fill="none" viewBox="0 0 33 32"><g clip-path="url(#clip0_10031_177597)"><path fill="#B7F0EF" fill-rule="evenodd" d="M17 7.87059C17 6.48214 17.9812 5.28722 19.3431 5.01709L29.5249 2.99755C31.3238 2.64076 33 4.01717 33 5.85105V22.1344C33 23.5229 32.0188 24.7178 30.6569 24.9879L20.4751 27.0074C18.6762 27.3642 17 25.9878 17 24.1539L17 7.87059Z" clip-rule="evenodd" opacity=".7"/><path fill="#87E6E5" fill-rule="evenodd" d="M1 5.85245C1 4.01857 2.67623 2.64215 4.47507 2.99895L14.6569 5.01848C16.0188 5.28861 17 6.48354 17 7.87198V24.1553C17 25.9892 15.3238 27.3656 13.5249 27.0088L3.34311 24.9893C1.98119 24.7192 1 23.5242 1 22.1358V5.85245Z" clip-rule="evenodd"/><path fill="#61C1FD" fill-rule="evenodd" d="M15.543 5.71289C15.543 5.71289 16.8157 5.96289 17.4002 6.57653C17.9847 7.19016 18.4521 9.03107 18.4521 9.03107C18.4521 9.03107 18.4521 25.1106 18.4521 26.9629C18.4521 28.8152 19.3775 31.4174 19.3775 31.4174L17.4002 28.8947L16.2575 31.4174C16.2575 31.4174 15.543 29.0765 15.543 27.122C15.543 25.1674 15.543 5.71289 15.543 5.71289Z" clip-rule="evenodd"/></g><defs><clipPath id="clip0_10031_177597"><rect width="32" height="32" fill="#fff" transform="translate(0.5)"/></clipPath></defs></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="none" viewBox="0 0 32 32"><path fill="#ED1D24" d="M31.3313 8.44657C30.9633 7.08998 29.8791 6.02172 28.5022 5.65916C26.0067 5.00026 16 5.00026 16 5.00026C16 5.00026 5.99333 5.00026 3.4978 5.65916C2.12102 6.02172 1.03665 7.08998 0.668678 8.44657C0 10.9053 0 16.0353 0 16.0353C0 16.0353 0 21.1652 0.668678 23.6242C1.03665 24.9806 2.12102 26.0489 3.4978 26.4116C5.99333 27.0703 16 27.0703 16 27.0703C16 27.0703 26.0067 27.0703 28.5022 26.4116C29.8791 26.0489 30.9633 24.9806 31.3313 23.6242C32 21.1652 32 16.0353 32 16.0353C32 16.0353 32 10.9053 31.3313 8.44657Z"/><path fill="#fff" d="M12.7266 20.6934L21.0902 16.036L12.7266 11.3781V20.6934Z"/></svg>
@@ -1,301 +0,0 @@
1
- A **complete global CSS** should establish the foundational design rules and visual consistency across an application. It should cover general aspects like colors, typography, spacing, layout, forms, buttons, and interactions. The component-specific styles will then build on top of this global foundation.
2
-
3
- Here’s a **meta description** of the key sections and properties that should be included in any global CSS file:
4
-
5
- ---
6
-
7
- ### **Meta Description of a Complete Global CSS**
8
-
9
- #### 1. **CSS Variables (Design Tokens)**
10
- Define **CSS variables** at the root level (`:root`) to store your design tokens. This ensures flexibility and consistency across the application.
11
-
12
- ##### Key Design Tokens:
13
- - **Primary and Secondary Colors**:
14
- - `--primary-color`: Main action color (e.g., for buttons, links).
15
- - `--secondary-color`: Supportive action color (e.g., for secondary buttons or highlights).
16
- - `--background-color`: Global background color.
17
- - `--text-color`: Main text color.
18
- - `--border-color`: Default color for borders.
19
- - `--link-color`: Color for links.
20
-
21
- Example:
22
- ```css
23
- :root {
24
- --primary-color: #0366d6;
25
- --secondary-color: #586069;
26
- --background-color: #ffffff;
27
- --text-color: #333333;
28
- --border-color: #e1e4e8;
29
- --link-color: #0366d6;
30
- }
31
- ```
32
-
33
- - **Typography**:
34
- - `--font-family`: Base font family for all text.
35
- - `--font-size-base`: Base font size (e.g., 16px).
36
- - `--line-height`: Global line height (e.g., 1.6).
37
- - `--font-weight-regular`: Regular font weight.
38
- - `--font-weight-bold`: Bold font weight.
39
-
40
- Example:
41
- ```css
42
- :root {
43
- --font-family: 'Open Sans', sans-serif;
44
- --font-size-base: 16px;
45
- --line-height: 1.6;
46
- --font-weight-regular: 400;
47
- --font-weight-bold: 700;
48
- }
49
- ```
50
-
51
- - **Spacing**:
52
- - `--spacing-xs`: Extra small spacing (e.g., padding, margins).
53
- - `--spacing-sm`: Small spacing.
54
- - `--spacing-md`: Medium spacing.
55
- - `--spacing-lg`: Large spacing.
56
-
57
- Example:
58
- ```css
59
- :root {
60
- --spacing-xs: 4px;
61
- --spacing-sm: 8px;
62
- --spacing-md: 16px;
63
- --spacing-lg: 32px;
64
- }
65
- ```
66
-
67
- - **Borders**:
68
- - `--border-radius`: Default radius for rounded elements.
69
- - `--border-width`: Default border width.
70
-
71
- Example:
72
- ```css
73
- :root {
74
- --border-radius: 4px;
75
- --border-width: 1px;
76
- }
77
- ```
78
-
79
- - **Z-index**:
80
- - `--z-index-modal`: Z-index for modals.
81
- - `--z-index-tooltip`: Z-index for tooltips.
82
-
83
- Example:
84
- ```css
85
- :root {
86
- --z-index-modal: 1000;
87
- --z-index-tooltip: 1050;
88
- }
89
- ```
90
-
91
- #### 2. **Global Resets and Base Styles**
92
- Implement styles to reset common browser inconsistencies and define the base font, color, and layout properties.
93
-
94
- ##### Example:
95
- ```css
96
- /* Global Reset */
97
- * {
98
- margin: 0;
99
- padding: 0;
100
- box-sizing: border-box;
101
- }
102
-
103
- /* Base Styles */
104
- body {
105
- font-family: var(--font-family);
106
- font-size: var(--font-size-base);
107
- line-height: var(--line-height);
108
- color: var(--text-color);
109
- background-color: var(--background-color);
110
- }
111
-
112
- a {
113
- color: var(--link-color);
114
- text-decoration: none;
115
- }
116
-
117
- a:hover {
118
- text-decoration: underline;
119
- }
120
- ```
121
-
122
- #### 3. **Typography**
123
- Define global typography rules to ensure a consistent appearance for all headings, paragraphs, and text elements.
124
-
125
- ##### Example:
126
- ```css
127
- h1, h2, h3, h4, h5, h6 {
128
- color: var(--text-color);
129
- font-weight: var(--font-weight-bold);
130
- margin-bottom: var(--spacing-md);
131
- }
132
-
133
- h1 { font-size: 2.25em; }
134
- h2 { font-size: 1.75em; }
135
- h3 { font-size: 1.5em; }
136
- h4 { font-size: 1.25em; }
137
- h5, h6 { font-size: 1em; color: var(--secondary-color); }
138
-
139
- p {
140
- margin-bottom: var(--spacing-md);
141
- color: var(--text-color);
142
- }
143
- ```
144
-
145
- #### 4. **Buttons**
146
- Global button styles that cover primary, secondary, and disabled states.
147
-
148
- ##### Example:
149
- ```css
150
- .button {
151
- padding: var(--spacing-sm) var(--spacing-md);
152
- border-radius: var(--border-radius);
153
- border: none;
154
- cursor: pointer;
155
- font-size: 1rem;
156
- }
157
-
158
- .button--primary {
159
- background-color: var(--primary-color);
160
- color: #ffffff;
161
- }
162
-
163
- .button--secondary {
164
- background-color: var(--secondary-color);
165
- color: #ffffff;
166
- }
167
-
168
- .button--disabled {
169
- background-color: #cccccc;
170
- cursor: not-allowed;
171
- }
172
- ```
173
-
174
- #### 5. **Form Elements**
175
- Global styles for form elements like `input`, `textarea`, and `select`.
176
-
177
- ##### Example:
178
- ```css
179
- input, textarea, select {
180
- padding: var(--spacing-sm);
181
- border-radius: var(--border-radius);
182
- border: var(--border-width) solid var(--border-color);
183
- font-size: var(--font-size-base);
184
- font-family: var(--font-family);
185
- }
186
-
187
- input:focus, textarea:focus, select:focus {
188
- border-color: var(--primary-color);
189
- outline: none;
190
- }
191
- ```
192
-
193
- #### 6. **Containers and Layout**
194
- Define a layout system with containers, grid systems, and common utilities.
195
-
196
- ##### Example (Container):
197
- ```css
198
- .container {
199
- max-width: 1200px;
200
- margin: 0 auto;
201
- padding: var(--spacing-md);
202
- }
203
-
204
- /* Responsive Grid */
205
- .grid {
206
- display: flex;
207
- gap: var(--spacing-md);
208
- flex-wrap: wrap;
209
- }
210
-
211
- .grid__item {
212
- flex: 1;
213
- min-width: 200px;
214
- }
215
- ```
216
-
217
- #### 7. **Spacing and Utility Classes**
218
- Define utility classes for common spacing, alignment, and display patterns.
219
-
220
- ##### Example:
221
- ```css
222
- /* Margin utilities */
223
- .mt-sm { margin-top: var(--spacing-sm); }
224
- .mb-md { margin-bottom: var(--spacing-md); }
225
-
226
- /* Text alignment */
227
- .text-center { text-align: center; }
228
-
229
- /* Flex utilities */
230
- .d-flex { display: flex; }
231
- .flex-column { flex-direction: column; }
232
- ```
233
-
234
- #### 8. **Media Queries**
235
- Define breakpoints for responsive design and apply styles accordingly.
236
-
237
- ##### Example:
238
- ```css
239
- @media (max-width: 768px) {
240
- .container {
241
- padding: var(--spacing-sm);
242
- }
243
-
244
- h1 {
245
- font-size: 1.75em;
246
- }
247
- }
248
- ```
249
-
250
- #### 9. **Dark Mode and Light Mode (Theming)**
251
- Define rules for light and dark themes. Switch the theme by changing the root variables.
252
-
253
- ##### Example:
254
- ```css
255
- /* Light Mode */
256
- .light-theme {
257
- --background-color: #ffffff;
258
- --text-color: #333333;
259
- --primary-color: #0366d6;
260
- }
261
-
262
- /* Dark Mode */
263
- .dark-theme {
264
- --background-color: #181818;
265
- --text-color: #eaeaea;
266
- --primary-color: #539bf5;
267
- }
268
- ```
269
-
270
- #### 10. **Accessibility**
271
- Ensure accessibility by focusing on contrasts, keyboard focus states, and screen reader support.
272
-
273
- ##### Example:
274
- ```css
275
- a:focus, button:focus {
276
- outline: 2px solid var(--primary-color);
277
- outline-offset: 2px;
278
- }
279
-
280
- @media (prefers-reduced-motion: reduce) {
281
- * {
282
- animation: none;
283
- transition: none;
284
- }
285
- }
286
- ```
287
-
288
- ---
289
-
290
- ### **Key Elements to Include in Each CSS**
291
-
292
- 1. **Colors**: Primary, secondary, background, text, border colors.
293
- 2. **Typography**: Font family, font sizes, line heights, weights.
294
- 3. **Spacing**: Padding, margins, grid, and layout utilities.
295
- 4. **Components**: Buttons, forms, links, containers.
296
- 5. **Theming**: Light mode, dark mode, and accessible states.
297
- 6. **Accessibility**: Focus states, reduced motion, high contrast.
298
- 7. **Responsive**: Media queries for different screen sizes.
299
- 8. **Utility Classes**: For common patterns like alignment, display, spacing.
300
-
301
- By following this structure, you ensure that your global CSS provides a robust, consistent, and easily customizable foundation for your application’s design.