this.gui 1.0.14 → 1.0.16

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 (259) hide show
  1. package/README.md +0 -39
  2. package/dist/style.css +1 -1
  3. package/dist/this-gui.es.js +3751 -1882
  4. package/dist/this-gui.umd.js +34 -22
  5. package/package.json +14 -12
  6. package/src/App.jsx +50 -21
  7. package/src/SiteBuilder.jsx +39 -0
  8. package/src/index.mdx +10 -0
  9. package/src/main.jsx +11 -14
  10. package/src/scripts/postinstall.js +28 -31
  11. package/src/scripts/verifyLayouts.js +175 -0
  12. package/src/scripts/verifyTemplates.js +154 -0
  13. package/src/stories/Atoms/Alert/Alert.css +196 -14
  14. package/src/stories/Atoms/Alert/Alert.jsx +43 -28
  15. package/src/stories/Atoms/Alert/Alert.stories.jsx +154 -28
  16. package/src/stories/Atoms/Audio/Audio.css +246 -16
  17. package/src/stories/Atoms/Audio/Audio.jsx +204 -29
  18. package/src/stories/Atoms/Audio/Audio.stories.jsx +178 -28
  19. package/src/stories/Atoms/Badge/Badge.css +234 -15
  20. package/src/stories/Atoms/Badge/Badge.jsx +44 -31
  21. package/src/stories/Atoms/Badge/Badge.stories.jsx +108 -29
  22. package/src/stories/Atoms/Button/Button.css +106 -45
  23. package/src/stories/Atoms/Button/Button.jsx +31 -82
  24. package/src/stories/Atoms/Button/Button.stories.jsx +170 -40
  25. package/src/stories/Atoms/Caption/Caption.css +156 -16
  26. package/src/stories/Atoms/Caption/Caption.jsx +62 -31
  27. package/src/stories/Atoms/Caption/Caption.stories.jsx +194 -28
  28. package/src/stories/Atoms/Checkbox/Checkbox.css +168 -15
  29. package/src/stories/Atoms/Checkbox/Checkbox.jsx +73 -31
  30. package/src/stories/Atoms/Checkbox/Checkbox.stories.jsx +98 -27
  31. package/src/stories/Atoms/Container/Container.css +75 -15
  32. package/src/stories/Atoms/Container/Container.jsx +41 -28
  33. package/src/stories/Atoms/Container/Container.stories.jsx +92 -29
  34. package/src/stories/Atoms/Divider/Divider.css +131 -13
  35. package/src/stories/Atoms/Divider/Divider.jsx +54 -33
  36. package/src/stories/Atoms/Divider/Divider.stories.jsx +93 -29
  37. package/src/stories/Atoms/Heading/Heading.css +99 -16
  38. package/src/stories/Atoms/Heading/Heading.jsx +57 -29
  39. package/src/stories/Atoms/Heading/Heading.stories.jsx +117 -28
  40. package/src/stories/Atoms/Icon/Icon.css +219 -27
  41. package/src/stories/Atoms/Icon/Icon.jsx +67 -38
  42. package/src/stories/Atoms/Icon/Icon.stories.jsx +156 -51
  43. package/src/stories/Atoms/Image/Image.css +231 -15
  44. package/src/stories/Atoms/Image/Image.jsx +166 -32
  45. package/src/stories/Atoms/Image/Image.stories.jsx +319 -28
  46. package/src/stories/Atoms/Label/Label.css +158 -16
  47. package/src/stories/Atoms/Label/Label.jsx +61 -31
  48. package/src/stories/Atoms/Label/Label.stories.jsx +167 -28
  49. package/src/stories/Atoms/Link/Link.css +58 -16
  50. package/src/stories/Atoms/Link/Link.jsx +73 -32
  51. package/src/stories/Atoms/Link/Link.stories.jsx +141 -29
  52. package/src/stories/Atoms/Loader/Loader.css +93 -16
  53. package/src/stories/Atoms/Loader/Loader.jsx +47 -30
  54. package/src/stories/Atoms/Loader/Loader.stories.jsx +86 -28
  55. package/src/stories/Atoms/Logo/Logo.css +94 -0
  56. package/src/stories/Atoms/Logo/Logo.jsx +53 -0
  57. package/src/stories/Atoms/Logo/Logo.stories.jsx +120 -0
  58. package/src/stories/Atoms/Paragraph/Paragraph.css +167 -16
  59. package/src/stories/Atoms/Paragraph/Paragraph.jsx +67 -31
  60. package/src/stories/Atoms/Paragraph/Paragraph.stories.jsx +130 -28
  61. package/src/stories/Atoms/ProgressBar/ProgressBar.css +115 -17
  62. package/src/stories/Atoms/ProgressBar/ProgressBar.jsx +30 -31
  63. package/src/stories/Atoms/ProgressBar/ProgressBar.stories.jsx +72 -27
  64. package/src/stories/Atoms/RadioButton/RadioButton.css +118 -17
  65. package/src/stories/Atoms/RadioButton/RadioButton.jsx +77 -31
  66. package/src/stories/Atoms/RadioButton/RadioButton.stories.jsx +99 -27
  67. package/src/stories/Atoms/Range/Range.css +169 -0
  68. package/src/stories/Atoms/Range/Range.jsx +87 -0
  69. package/src/stories/Atoms/Range/Range.stories.jsx +110 -0
  70. package/src/stories/Atoms/Select/Select.css +74 -16
  71. package/src/stories/Atoms/Select/Select.jsx +62 -30
  72. package/src/stories/Atoms/Select/Select.stories.jsx +95 -27
  73. package/src/stories/Atoms/Slider/Slider.css +77 -16
  74. package/src/stories/Atoms/Slider/Slider.jsx +119 -31
  75. package/src/stories/Atoms/Slider/Slider.stories.jsx +77 -28
  76. package/src/stories/Atoms/Snackbar/Snackbar.css +297 -13
  77. package/src/stories/Atoms/Snackbar/Snackbar.jsx +62 -31
  78. package/src/stories/Atoms/Snackbar/Snackbar.stories.jsx +63 -26
  79. package/src/stories/Atoms/Spacer/Spacer.css +101 -16
  80. package/src/stories/Atoms/Spacer/Spacer.jsx +26 -32
  81. package/src/stories/Atoms/Spacer/Spacer.stories.jsx +50 -30
  82. package/src/stories/Atoms/Spinner/Spinner.css +97 -16
  83. package/src/stories/Atoms/Spinner/Spinner.jsx +50 -26
  84. package/src/stories/Atoms/Spinner/Spinner.stories.jsx +47 -30
  85. package/src/stories/Atoms/Tag/Tag.css +97 -14
  86. package/src/stories/Atoms/Tag/Tag.jsx +58 -24
  87. package/src/stories/Atoms/Tag/Tag.stories.jsx +55 -29
  88. package/src/stories/Atoms/TextArea/TextArea.css +84 -15
  89. package/src/stories/Atoms/TextArea/TextArea.jsx +107 -31
  90. package/src/stories/Atoms/TextArea/TextArea.stories.jsx +24 -30
  91. package/src/stories/Atoms/TextInput/TextInput.css +89 -17
  92. package/src/stories/Atoms/TextInput/TextInput.jsx +118 -27
  93. package/src/stories/Atoms/TextInput/TextInput.stories.jsx +52 -25
  94. package/src/stories/Atoms/Toggle/Toggle.css +105 -17
  95. package/src/stories/Atoms/Toggle/Toggle.jsx +55 -28
  96. package/src/stories/Atoms/Toggle/Toggle.stories.jsx +23 -30
  97. package/src/stories/Atoms/Tooltip/Tooltip.css +367 -14
  98. package/src/stories/Atoms/Tooltip/Tooltip.jsx +32 -28
  99. package/src/stories/Atoms/Tooltip/Tooltip.stories.jsx +41 -31
  100. package/src/stories/Atoms/Video/Video.css +27 -18
  101. package/src/stories/Atoms/Video/Video.jsx +65 -29
  102. package/src/stories/Atoms/Video/Video.stories.jsx +29 -30
  103. package/src/stories/Atoms/index.js +5 -2
  104. package/src/stories/Atoms/meta_Atoms.js +3 -1
  105. package/src/stories/Layouts/Accordion/Accordion.css +16 -0
  106. package/src/stories/Layouts/Accordion/Accordion.jsx +31 -0
  107. package/src/stories/Layouts/Accordion/Accordion.stories.jsx +28 -0
  108. package/src/stories/Layouts/DropdownMenu/DropdownMenu.css +16 -0
  109. package/src/stories/Layouts/DropdownMenu/DropdownMenu.jsx +31 -0
  110. package/src/stories/Layouts/DropdownMenu/DropdownMenu.stories.jsx +28 -0
  111. package/src/stories/Layouts/Flexbox/Flexbox.css +16 -0
  112. package/src/stories/Layouts/Flexbox/Flexbox.jsx +11 -0
  113. package/src/stories/Layouts/Flexbox/Flexbox.stories.jsx +28 -0
  114. package/src/stories/Layouts/Footer/Footer.css +16 -0
  115. package/src/stories/Layouts/Footer/Footer.jsx +31 -0
  116. package/src/stories/Layouts/Footer/Footer.stories.jsx +28 -0
  117. package/src/stories/Layouts/Grid/Grid.jsx +2 -4
  118. package/src/stories/Layouts/Grid/Grid.stories.jsx +20 -18
  119. package/src/stories/Layouts/Header/Header.css +16 -0
  120. package/src/stories/Layouts/Header/Header.jsx +31 -0
  121. package/src/stories/Layouts/Header/Header.stories.jsx +28 -0
  122. package/src/stories/Layouts/HeroBanner/HeroBanner.css +16 -0
  123. package/src/stories/Layouts/HeroBanner/HeroBanner.jsx +31 -0
  124. package/src/stories/Layouts/HeroBanner/HeroBanner.stories.jsx +28 -0
  125. package/src/stories/Layouts/HeroImageVideo/HeroImageVideo.css +16 -0
  126. package/src/stories/Layouts/HeroImageVideo/HeroImageVideo.jsx +31 -0
  127. package/src/stories/Layouts/HeroImageVideo/HeroImageVideo.stories.jsx +28 -0
  128. package/src/stories/Layouts/Pagination/Pagination.css +16 -0
  129. package/src/stories/Layouts/Pagination/Pagination.jsx +31 -0
  130. package/src/stories/Layouts/Pagination/Pagination.stories.jsx +28 -0
  131. package/src/stories/Layouts/Section/Section.css +16 -0
  132. package/src/stories/Layouts/Section/Section.jsx +31 -0
  133. package/src/stories/Layouts/Section/Section.stories.jsx +28 -0
  134. package/src/stories/Layouts/Sidebar/Sidebar.css +16 -0
  135. package/src/stories/Layouts/Sidebar/Sidebar.jsx +71 -0
  136. package/src/stories/Layouts/Sidebar/Sidebar.stories.jsx +28 -0
  137. package/src/stories/Layouts/Tabs/Tabs.css +16 -0
  138. package/src/stories/Layouts/Tabs/Tabs.jsx +31 -0
  139. package/src/stories/Layouts/Tabs/Tabs.stories.jsx +28 -0
  140. package/src/stories/Layouts/index.js +31 -0
  141. package/src/stories/Layouts/meta_Layouts.js +31 -0
  142. package/src/stories/Molecules/Navbar/Navbar.css +63 -59
  143. package/src/stories/Molecules/Navbar/Navbar.jsx +43 -48
  144. package/src/stories/Molecules/Navbar/Navbar.stories.jsx +58 -8
  145. package/src/stories/Molecules/SearchBar/SearchBar.css +66 -1
  146. package/src/stories/Molecules/SearchBar/SearchBar.jsx +59 -11
  147. package/src/stories/Molecules/SearchBar/SearchBar.stories.jsx +16 -7
  148. package/src/stories/Molecules/SelectTheme/SelectTheme.jsx +16 -38
  149. package/src/stories/Molecules/SelectTheme/SelectTheme.stories.jsx +1 -2
  150. package/src/stories/Molecules/Sidebar/Sidebar.css +65 -2
  151. package/src/stories/Molecules/Sidebar/Sidebar.jsx +66 -11
  152. package/src/stories/Molecules/Sidebar/Sidebar.stories.jsx +20 -5
  153. package/src/stories/Templates/AdminDashboard/AdminDashboard.css +7 -0
  154. package/src/stories/Templates/AdminDashboard/AdminDashboard.jsx +24 -0
  155. package/src/stories/Templates/AdminDashboard/AdminDashboard.stories.jsx +20 -0
  156. package/src/stories/Templates/CallToAction/CallToAction.css +7 -0
  157. package/src/stories/Templates/CallToAction/CallToAction.jsx +24 -0
  158. package/src/stories/Templates/CallToAction/CallToAction.stories.jsx +20 -0
  159. package/src/stories/Templates/FeaturesList/FeaturesList.css +7 -0
  160. package/src/stories/Templates/FeaturesList/FeaturesList.jsx +24 -0
  161. package/src/stories/Templates/FeaturesList/FeaturesList.stories.jsx +20 -0
  162. package/src/stories/Templates/FormSection/FormSection.css +7 -0
  163. package/src/stories/Templates/FormSection/FormSection.jsx +24 -0
  164. package/src/stories/Templates/FormSection/FormSection.stories.jsx +20 -0
  165. package/src/stories/Templates/HeroSection/HeroSection.css +7 -0
  166. package/src/stories/Templates/HeroSection/HeroSection.jsx +24 -0
  167. package/src/stories/Templates/HeroSection/HeroSection.stories.jsx +20 -0
  168. package/src/stories/Templates/LocationInfo/LocationInfo.css +7 -0
  169. package/src/stories/Templates/LocationInfo/LocationInfo.jsx +24 -0
  170. package/src/stories/Templates/LocationInfo/LocationInfo.stories.jsx +20 -0
  171. package/src/stories/Templates/ProductPage/ProductPage.css +7 -0
  172. package/src/stories/Templates/ProductPage/ProductPage.jsx +24 -0
  173. package/src/stories/Templates/ProductPage/ProductPage.stories.jsx +20 -0
  174. package/src/stories/Templates/RegistrationPage/RegistrationPage.css +7 -0
  175. package/src/stories/Templates/RegistrationPage/RegistrationPage.jsx +24 -0
  176. package/src/stories/Templates/RegistrationPage/RegistrationPage.stories.jsx +20 -0
  177. package/src/stories/Templates/ShoppingCart/ShoppingCart.css +7 -0
  178. package/src/stories/Templates/ShoppingCart/ShoppingCart.jsx +24 -0
  179. package/src/stories/Templates/ShoppingCart/ShoppingCart.stories.jsx +20 -0
  180. package/src/stories/Templates/SidebarTopNav/SidebarTopNav.css +7 -0
  181. package/src/stories/Templates/SidebarTopNav/SidebarTopNav.jsx +24 -0
  182. package/src/stories/Templates/SidebarTopNav/SidebarTopNav.stories.jsx +20 -0
  183. package/src/stories/Templates/SignInPage/SignInPage.css +7 -0
  184. package/src/stories/Templates/SignInPage/SignInPage.jsx +24 -0
  185. package/src/stories/Templates/SignInPage/SignInPage.stories.jsx +20 -0
  186. package/src/stories/Templates/SocialMediaLinks/SocialMediaLinks.css +7 -0
  187. package/src/stories/Templates/SocialMediaLinks/SocialMediaLinks.jsx +24 -0
  188. package/src/stories/Templates/SocialMediaLinks/SocialMediaLinks.stories.jsx +20 -0
  189. package/src/stories/Templates/Testimonials/Testimonials.css +7 -0
  190. package/src/stories/Templates/Testimonials/Testimonials.jsx +24 -0
  191. package/src/stories/Templates/Testimonials/Testimonials.stories.jsx +20 -0
  192. package/src/stories/Templates/index.js +33 -0
  193. package/src/stories/Templates/{Templates.js → meta_Templates.js} +3 -1
  194. package/src/stories/assets/logo.png +0 -0
  195. package/src/stories/assets/logo.svg +106 -0
  196. package/src/stories/assets/test.svg +3 -0
  197. package/src/themes/README.md +301 -0
  198. package/src/themes/ThemeProvider.jsx +47 -22
  199. package/src/themes/styles/dracula/dark.css +0 -0
  200. package/src/themes/styles/dracula/light.css +0 -0
  201. package/src/themes/styles/github/dark.css +0 -0
  202. package/src/themes/styles/github/light.css +0 -0
  203. package/src/themes/styles/neurons/dark.css +247 -0
  204. package/src/themes/styles/neurons/light.css +280 -0
  205. package/dist/github-3688a83a.js +0 -5
  206. package/dist/gothic-94a7ecd6.js +0 -5
  207. package/dist/newsprint-32bf94d9.js +0 -5
  208. package/dist/night-4a954853.js +0 -5
  209. package/dist/pixyll-94de4610.js +0 -5
  210. package/dist/whitey-db68723e.js +0 -5
  211. package/src/MDXEditor.jsx +0 -32
  212. package/src/stories/Atoms/RangeInput/RangeInput.css +0 -29
  213. package/src/stories/Atoms/RangeInput/RangeInput.jsx +0 -41
  214. package/src/stories/Atoms/RangeInput/RangeInput.stories.jsx +0 -41
  215. package/src/stories/Components.md +0 -189
  216. package/src/stories/Layouts/Layout.js +0 -28
  217. package/src/styles/Header.modules.css +0 -32
  218. package/src/styles/global.css +0 -59
  219. package/src/themes/Themes.js +0 -44
  220. package/src/themes/dark.js +0 -22
  221. package/src/themes/light.js +0 -22
  222. package/src/themes/typ/Readme.md +0 -4
  223. package/src/themes/typ/github/open-sans-v17-latin-ext_latin-700.woff2 +0 -0
  224. package/src/themes/typ/github/open-sans-v17-latin-ext_latin-700italic.woff2 +0 -0
  225. package/src/themes/typ/github/open-sans-v17-latin-ext_latin-italic.woff2 +0 -0
  226. package/src/themes/typ/github/open-sans-v17-latin-ext_latin-regular.woff2 +0 -0
  227. package/src/themes/typ/github.css +0 -416
  228. package/src/themes/typ/gothic/GUST e-foundry License.txt +0 -29
  229. package/src/themes/typ/gothic/didact-gothic-c-ext.woff2 +0 -0
  230. package/src/themes/typ/gothic/didact-gothic-c.woff2 +0 -0
  231. package/src/themes/typ/gothic/texgyreadventor-bold.woff +0 -0
  232. package/src/themes/typ/gothic/texgyreadventor-bolditalic.woff +0 -0
  233. package/src/themes/typ/gothic/texgyreadventor-italic.woff +0 -0
  234. package/src/themes/typ/gothic/texgyreadventor-regular.woff +0 -0
  235. package/src/themes/typ/gothic.css +0 -410
  236. package/src/themes/typ/newsprint/pt-serif-v11-latin-700.woff2 +0 -0
  237. package/src/themes/typ/newsprint/pt-serif-v11-latin-700italic.woff2 +0 -0
  238. package/src/themes/typ/newsprint/pt-serif-v11-latin-italic.woff2 +0 -0
  239. package/src/themes/typ/newsprint/pt-serif-v11-latin-regular.woff2 +0 -0
  240. package/src/themes/typ/newsprint.css +0 -622
  241. package/src/themes/typ/night/codeblock.dark.css +0 -113
  242. package/src/themes/typ/night/credit.html +0 -1
  243. package/src/themes/typ/night/cursor.png +0 -0
  244. package/src/themes/typ/night/cursor@2x.png +0 -0
  245. package/src/themes/typ/night/mermaid.dark.css +0 -7
  246. package/src/themes/typ/night/sourcemode.dark.css +0 -38
  247. package/src/themes/typ/night.css +0 -1032
  248. package/src/themes/typ/pixyll/lato-v14-latin-300.woff +0 -0
  249. package/src/themes/typ/pixyll/lato-v14-latin-300italic.woff +0 -0
  250. package/src/themes/typ/pixyll/lato-v14-latin-900.woff +0 -0
  251. package/src/themes/typ/pixyll/lato-v14-latin-900italic.woff +0 -0
  252. package/src/themes/typ/pixyll/merriweather-v19-latin-300.woff +0 -0
  253. package/src/themes/typ/pixyll/merriweather-v19-latin-300italic.woff +0 -0
  254. package/src/themes/typ/pixyll/merriweather-v19-latin-700.woff +0 -0
  255. package/src/themes/typ/pixyll/merriweather-v19-latin-700italic.woff +0 -0
  256. package/src/themes/typ/pixyll.css +0 -528
  257. package/src/themes/typ/whitey.css +0 -299
  258. /package/src/stories/Molecules/{Molecules.js → meta_Molecules.js} +0 -0
  259. /package/src/stories/Organisms/{Organisms.js → meta_Organisms.js} +0 -0
@@ -0,0 +1,24 @@
1
+
2
+ import React from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import './RegistrationPage.css';
5
+
6
+ /**
7
+ * RegistrationPage template component
8
+ */
9
+ export const RegistrationPage = ({ children, ...props }) => {
10
+ return (
11
+ <div className="registrationpage" {...props}>
12
+ {children}
13
+ </div>
14
+ );
15
+ };
16
+
17
+ RegistrationPage.propTypes = {
18
+ /**
19
+ * Children components to be rendered inside the template
20
+ */
21
+ children: PropTypes.node.isRequired,
22
+ };
23
+
24
+ export default RegistrationPage;
@@ -0,0 +1,20 @@
1
+
2
+ import { RegistrationPage } from './RegistrationPage';
3
+
4
+ // Storybook configuration for RegistrationPage template
5
+ export default {
6
+ title: 'Templates/AuthenticationPages/RegistrationPage',
7
+ component: RegistrationPage,
8
+ parameters: {
9
+ layout: 'fullscreen',
10
+ },
11
+ argTypes: {
12
+ children: { control: 'text' },
13
+ },
14
+ };
15
+
16
+ export const Default = {
17
+ args: {
18
+ children: 'This is a default RegistrationPage template.',
19
+ },
20
+ };
@@ -0,0 +1,7 @@
1
+
2
+ .shoppingcart {
3
+ padding: 16px;
4
+ border-radius: 8px;
5
+ background-color: #f0f0f0;
6
+ border: 1px solid #ddd;
7
+ }
@@ -0,0 +1,24 @@
1
+
2
+ import React from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import './ShoppingCart.css';
5
+
6
+ /**
7
+ * ShoppingCart template component
8
+ */
9
+ export const ShoppingCart = ({ children, ...props }) => {
10
+ return (
11
+ <div className="shoppingcart" {...props}>
12
+ {children}
13
+ </div>
14
+ );
15
+ };
16
+
17
+ ShoppingCart.propTypes = {
18
+ /**
19
+ * Children components to be rendered inside the template
20
+ */
21
+ children: PropTypes.node.isRequired,
22
+ };
23
+
24
+ export default ShoppingCart;
@@ -0,0 +1,20 @@
1
+
2
+ import { ShoppingCart } from './ShoppingCart';
3
+
4
+ // Storybook configuration for ShoppingCart template
5
+ export default {
6
+ title: 'Templates/ECommercePages/ShoppingCart',
7
+ component: ShoppingCart,
8
+ parameters: {
9
+ layout: 'fullscreen',
10
+ },
11
+ argTypes: {
12
+ children: { control: 'text' },
13
+ },
14
+ };
15
+
16
+ export const Default = {
17
+ args: {
18
+ children: 'This is a default ShoppingCart template.',
19
+ },
20
+ };
@@ -0,0 +1,7 @@
1
+
2
+ .sidebartopnav {
3
+ padding: 16px;
4
+ border-radius: 8px;
5
+ background-color: #f0f0f0;
6
+ border: 1px solid #ddd;
7
+ }
@@ -0,0 +1,24 @@
1
+
2
+ import React from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import './SidebarTopNav.css';
5
+
6
+ /**
7
+ * SidebarTopNav template component
8
+ */
9
+ export const SidebarTopNav = ({ children, ...props }) => {
10
+ return (
11
+ <div className="sidebartopnav" {...props}>
12
+ {children}
13
+ </div>
14
+ );
15
+ };
16
+
17
+ SidebarTopNav.propTypes = {
18
+ /**
19
+ * Children components to be rendered inside the template
20
+ */
21
+ children: PropTypes.node.isRequired,
22
+ };
23
+
24
+ export default SidebarTopNav;
@@ -0,0 +1,20 @@
1
+
2
+ import { SidebarTopNav } from './SidebarTopNav';
3
+
4
+ // Storybook configuration for SidebarTopNav template
5
+ export default {
6
+ title: 'Templates/DashboardLayouts/SidebarTopNav',
7
+ component: SidebarTopNav,
8
+ parameters: {
9
+ layout: 'fullscreen',
10
+ },
11
+ argTypes: {
12
+ children: { control: 'text' },
13
+ },
14
+ };
15
+
16
+ export const Default = {
17
+ args: {
18
+ children: 'This is a default SidebarTopNav template.',
19
+ },
20
+ };
@@ -0,0 +1,7 @@
1
+
2
+ .signinpage {
3
+ padding: 16px;
4
+ border-radius: 8px;
5
+ background-color: #f0f0f0;
6
+ border: 1px solid #ddd;
7
+ }
@@ -0,0 +1,24 @@
1
+
2
+ import React from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import './SignInPage.css';
5
+
6
+ /**
7
+ * SignInPage template component
8
+ */
9
+ export const SignInPage = ({ children, ...props }) => {
10
+ return (
11
+ <div className="signinpage" {...props}>
12
+ {children}
13
+ </div>
14
+ );
15
+ };
16
+
17
+ SignInPage.propTypes = {
18
+ /**
19
+ * Children components to be rendered inside the template
20
+ */
21
+ children: PropTypes.node.isRequired,
22
+ };
23
+
24
+ export default SignInPage;
@@ -0,0 +1,20 @@
1
+
2
+ import { SignInPage } from './SignInPage';
3
+
4
+ // Storybook configuration for SignInPage template
5
+ export default {
6
+ title: 'Templates/AuthenticationPages/SignInPage',
7
+ component: SignInPage,
8
+ parameters: {
9
+ layout: 'fullscreen',
10
+ },
11
+ argTypes: {
12
+ children: { control: 'text' },
13
+ },
14
+ };
15
+
16
+ export const Default = {
17
+ args: {
18
+ children: 'This is a default SignInPage template.',
19
+ },
20
+ };
@@ -0,0 +1,7 @@
1
+
2
+ .socialmedialinks {
3
+ padding: 16px;
4
+ border-radius: 8px;
5
+ background-color: #f0f0f0;
6
+ border: 1px solid #ddd;
7
+ }
@@ -0,0 +1,24 @@
1
+
2
+ import React from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import './SocialMediaLinks.css';
5
+
6
+ /**
7
+ * SocialMediaLinks template component
8
+ */
9
+ export const SocialMediaLinks = ({ children, ...props }) => {
10
+ return (
11
+ <div className="socialmedialinks" {...props}>
12
+ {children}
13
+ </div>
14
+ );
15
+ };
16
+
17
+ SocialMediaLinks.propTypes = {
18
+ /**
19
+ * Children components to be rendered inside the template
20
+ */
21
+ children: PropTypes.node.isRequired,
22
+ };
23
+
24
+ export default SocialMediaLinks;
@@ -0,0 +1,20 @@
1
+
2
+ import { SocialMediaLinks } from './SocialMediaLinks';
3
+
4
+ // Storybook configuration for SocialMediaLinks template
5
+ export default {
6
+ title: 'Templates/ContactUsPages/SocialMediaLinks',
7
+ component: SocialMediaLinks,
8
+ parameters: {
9
+ layout: 'fullscreen',
10
+ },
11
+ argTypes: {
12
+ children: { control: 'text' },
13
+ },
14
+ };
15
+
16
+ export const Default = {
17
+ args: {
18
+ children: 'This is a default SocialMediaLinks template.',
19
+ },
20
+ };
@@ -0,0 +1,7 @@
1
+
2
+ .testimonials {
3
+ padding: 16px;
4
+ border-radius: 8px;
5
+ background-color: #f0f0f0;
6
+ border: 1px solid #ddd;
7
+ }
@@ -0,0 +1,24 @@
1
+
2
+ import React from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import './Testimonials.css';
5
+
6
+ /**
7
+ * Testimonials template component
8
+ */
9
+ export const Testimonials = ({ children, ...props }) => {
10
+ return (
11
+ <div className="testimonials" {...props}>
12
+ {children}
13
+ </div>
14
+ );
15
+ };
16
+
17
+ Testimonials.propTypes = {
18
+ /**
19
+ * Children components to be rendered inside the template
20
+ */
21
+ children: PropTypes.node.isRequired,
22
+ };
23
+
24
+ export default Testimonials;
@@ -0,0 +1,20 @@
1
+
2
+ import { Testimonials } from './Testimonials';
3
+
4
+ // Storybook configuration for Testimonials template
5
+ export default {
6
+ title: 'Templates/LandingPages/Testimonials',
7
+ component: Testimonials,
8
+ parameters: {
9
+ layout: 'fullscreen',
10
+ },
11
+ argTypes: {
12
+ children: { control: 'text' },
13
+ },
14
+ };
15
+
16
+ export const Default = {
17
+ args: {
18
+ children: 'This is a default Testimonials template.',
19
+ },
20
+ };
@@ -0,0 +1,33 @@
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;
@@ -24,4 +24,6 @@ const Templates = {
24
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
25
  ]
26
26
  }
27
- }
27
+ }
28
+
29
+ export default Templates;
Binary file
@@ -0,0 +1,106 @@
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>
@@ -0,0 +1,3 @@
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>