rails_app_generator 0.1.28 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (220) hide show
  1. checksums.yaml +4 -4
  2. data/.builders/generators/project-plan.rb +6 -3
  3. data/.rubocop.yml +2 -1
  4. data/CHANGELOG.md +29 -0
  5. data/after_templates/addons/acts_as_list/_.rb +0 -14
  6. data/after_templates/addons/mini_magick/_.rb +1 -1
  7. data/after_templates/application/printspeak/_.rb +55 -0
  8. data/after_templates/{rag_tailwind/component-section-begin.html → application/printspeak/app/assets/images/.keep} +0 -0
  9. data/after_templates/application/printspeak/app/assets/images/about/1.jpg +0 -0
  10. data/after_templates/application/printspeak/app/assets/images/about/2.jpg +0 -0
  11. data/after_templates/application/printspeak/app/assets/images/about/3.jpg +0 -0
  12. data/after_templates/application/printspeak/app/assets/images/about/4.jpg +0 -0
  13. data/after_templates/application/printspeak/app/assets/images/close-icon.svg +1 -0
  14. data/after_templates/application/printspeak/app/assets/images/header-bg.jpg +0 -0
  15. data/after_templates/application/printspeak/app/assets/images/logos/facebook.svg +34 -0
  16. data/after_templates/application/printspeak/app/assets/images/logos/google.svg +35 -0
  17. data/after_templates/application/printspeak/app/assets/images/logos/ibm.svg +24 -0
  18. data/after_templates/application/printspeak/app/assets/images/logos/microsoft.svg +42 -0
  19. data/after_templates/application/printspeak/app/assets/images/map-image.png +0 -0
  20. data/after_templates/application/printspeak/app/assets/images/navbar-logo.svg +1 -0
  21. data/after_templates/application/printspeak/app/assets/images/portfolio/1.jpg +0 -0
  22. data/after_templates/application/printspeak/app/assets/images/portfolio/2.jpg +0 -0
  23. data/after_templates/application/printspeak/app/assets/images/portfolio/3.jpg +0 -0
  24. data/after_templates/application/printspeak/app/assets/images/portfolio/4.jpg +0 -0
  25. data/after_templates/application/printspeak/app/assets/images/portfolio/5.jpg +0 -0
  26. data/after_templates/application/printspeak/app/assets/images/portfolio/6.jpg +0 -0
  27. data/after_templates/application/printspeak/app/assets/images/portfolio/alphagraphics.jpeg +0 -0
  28. data/after_templates/application/printspeak/app/assets/images/portfolio/brochure-transformed.jpeg +0 -0
  29. data/after_templates/application/printspeak/app/assets/images/portfolio/brochure.jpeg +0 -0
  30. data/after_templates/application/printspeak/app/assets/images/portfolio/kwikkopy.png +0 -0
  31. data/after_templates/application/printspeak/app/assets/images/portfolio/kwikkopy2.png +0 -0
  32. data/after_templates/application/printspeak/app/assets/images/printspeak-logo.svg +19 -0
  33. data/after_templates/application/printspeak/app/assets/images/team/1.jpg +0 -0
  34. data/after_templates/application/printspeak/app/assets/images/team/2.jpg +0 -0
  35. data/after_templates/application/printspeak/app/assets/images/team/3.jpg +0 -0
  36. data/after_templates/application/printspeak/app/assets/stylesheets/application.bootstrap.scss +3 -0
  37. data/after_templates/application/printspeak/app/assets/stylesheets/home/_global.scss +52 -0
  38. data/after_templates/application/printspeak/app/assets/stylesheets/home/_variables.scss +8 -0
  39. data/after_templates/application/printspeak/app/assets/stylesheets/home/components/_buttons.scss +24 -0
  40. data/after_templates/application/printspeak/app/assets/stylesheets/home/components/_navbar.scss +92 -0
  41. data/after_templates/application/printspeak/app/assets/stylesheets/home/sections/_contact.scss +71 -0
  42. data/after_templates/application/printspeak/app/assets/stylesheets/home/sections/_footer.scss +9 -0
  43. data/after_templates/application/printspeak/app/assets/stylesheets/home/sections/_masthead.scss +52 -0
  44. data/after_templates/application/printspeak/app/assets/stylesheets/home/sections/_portfolio.scss +108 -0
  45. data/after_templates/application/printspeak/app/assets/stylesheets/home/sections/_team.scss +24 -0
  46. data/after_templates/application/printspeak/app/assets/stylesheets/home/sections/_timeline.scss +214 -0
  47. data/after_templates/application/printspeak/app/assets/stylesheets/home/styles.scss +24 -0
  48. data/after_templates/application/printspeak/app/assets/stylesheets/home/variables/_colors.scss +15 -0
  49. data/after_templates/application/printspeak/app/assets/stylesheets/home/variables/_typography.scss +54 -0
  50. data/after_templates/application/printspeak/app/controllers/home_controller.rb +7 -0
  51. data/after_templates/application/printspeak/app/views/home/index.html.erb +321 -0
  52. data/after_templates/application/printspeak/app/views/layouts/_alerts.html.erb +2 -0
  53. data/after_templates/application/printspeak/app/views/layouts/_footer.html.erb +16 -0
  54. data/after_templates/application/printspeak/app/views/layouts/_navbar.html.erb +14 -0
  55. data/after_templates/application/printspeak/app/views/layouts/application.html.erb +29 -0
  56. data/after_templates/{rag_printspeak → application/printspeak/app/views}/page/_footer.html.erb +0 -0
  57. data/after_templates/{rag_printspeak → application/printspeak/app/views}/page/architecture.html.erb +0 -0
  58. data/after_templates/{rag_printspeak → application/printspeak/app/views}/page/blog.html.erb +0 -0
  59. data/after_templates/{rag_printspeak → application/printspeak/app/views}/page/faq.html.erb +0 -0
  60. data/after_templates/application/printspeak/app/views/page/page_controller.rb +27 -0
  61. data/after_templates/{rag_printspeak → application/printspeak/app/views}/page/readme.html.erb +0 -0
  62. data/after_templates/application/printspeak/db/seeds.rb +16 -0
  63. data/after_templates/printspeak_bak/_.rb +36 -0
  64. data/after_templates/{rag_printspeak → printspeak_bak}/application_controller.rb +0 -0
  65. data/after_templates/{rag_printspeak → printspeak_bak}/faq.html.erb +0 -0
  66. data/after_templates/{rag_printspeak → printspeak_bak}/layouts/_footer.html.erb +0 -0
  67. data/after_templates/{rag_printspeak → printspeak_bak}/layouts/_head.html.erb +0 -0
  68. data/after_templates/{rag_printspeak → printspeak_bak}/layouts/_navbar.html.erb +0 -0
  69. data/after_templates/{rag_printspeak → printspeak_bak}/layouts/application.html.erb +0 -0
  70. data/after_templates/printspeak_bak/page/_footer.html.erb +184 -0
  71. data/after_templates/printspeak_bak/page/architecture.html.erb +33 -0
  72. data/after_templates/printspeak_bak/page/blog.html.erb +44 -0
  73. data/after_templates/printspeak_bak/page/faq.html.erb +2 -0
  74. data/after_templates/{rag_printspeak → printspeak_bak}/page/home.html.erb +0 -0
  75. data/after_templates/{rag_printspeak → printspeak_bak}/page/page_controller.rb +0 -0
  76. data/after_templates/printspeak_bak/page/readme.html.erb +49 -0
  77. data/after_templates/{rag_bootstrap.rb → rag/bootstrap/_.rb} +1 -1
  78. data/after_templates/{rag_bootstrap → rag/bootstrap}/application-yield.html.erb +0 -0
  79. data/after_templates/{rag_bootstrap → rag/bootstrap}/application.html.erb +0 -0
  80. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-cards-fancy.css +0 -0
  81. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-cards-fancy.html +0 -0
  82. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-cards-staff.css +0 -0
  83. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-cards-staff.html +0 -0
  84. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-cards-styled.html +0 -0
  85. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-footer.html +0 -0
  86. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-hero.html +0 -0
  87. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-modal.html +0 -0
  88. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-nav.html +0 -0
  89. data/after_templates/{rag_bootstrap → rag/bootstrap}/custom-bootstrap-import.scss +0 -0
  90. data/after_templates/{rag_bootstrap → rag/bootstrap}/custom-using-css.css +0 -0
  91. data/after_templates/{rag_bootstrap → rag/bootstrap}/custom-using-scss.scss +0 -0
  92. data/after_templates/{rag_bootstrap → rag/bootstrap}/manifest.js +0 -0
  93. data/after_templates/{rag_devise.rb → rag/devise/_.rb} +1 -1
  94. data/after_templates/{rag_devise → rag/devise}/application.html.erb +0 -0
  95. data/after_templates/{rag_devise → rag/devise}/application_controller.rb +0 -0
  96. data/after_templates/{rag_devise → rag/devise}/config/initializers/devise_turbo.rb +0 -0
  97. data/after_templates/{rag_devise → rag/devise}/layouts/_alerts.html.erb +0 -0
  98. data/after_templates/{rag_devise → rag/devise}/layouts/_footer.html.erb +0 -0
  99. data/after_templates/{rag_devise → rag/devise}/layouts/_navbar.html.erb +0 -0
  100. data/after_templates/{rag_devise → rag/devise}/layouts/application.html.erb +0 -0
  101. data/after_templates/{rag_devise → rag/devise}/post/_post.html.erb +0 -0
  102. data/after_templates/{rag_devise → rag/devise}/post/post.rb +0 -0
  103. data/after_templates/{rag_devise → rag/devise}/post/posts_controller.rb +0 -0
  104. data/after_templates/{rag_devise → rag/devise}/seed_data.rb +0 -0
  105. data/after_templates/{rag_devise → rag/devise}/turbo_controller.rb +0 -0
  106. data/after_templates/{rag_devise → rag/devise}/user.rb +0 -0
  107. data/after_templates/{rag_import_map.rb → rag/import_map/_.rb} +1 -1
  108. data/after_templates/{rag_import_map → rag/import_map}/component-sortable.html +0 -0
  109. data/after_templates/{rag_import_map → rag/import_map}/home.css +0 -0
  110. data/after_templates/{rag_import_map → rag/import_map}/position_controller.js +0 -0
  111. data/after_templates/{rag_simple.rb → rag/simple/_.rb} +1 -1
  112. data/after_templates/{rag_tailwind.rb → rag/tailwind/_.rb} +1 -1
  113. data/after_templates/{rag_tailwind → rag/tailwind}/component-cta.html +0 -0
  114. data/after_templates/{rag_tailwind → rag/tailwind}/component-faq.html +0 -0
  115. data/after_templates/{rag_tailwind → rag/tailwind}/component-footer.html +0 -0
  116. data/after_templates/{rag_tailwind → rag/tailwind}/component-hero.html +0 -0
  117. data/after_templates/{rag_tailwind → rag/tailwind}/component-nav.html +0 -0
  118. data/after_templates/{rag_tailwind/component-section-end.html → rag/tailwind/component-section-begin.html} +0 -0
  119. data/after_templates/{rag_tailwind_emulating_bootstrap/home/index.html.erb → rag/tailwind/component-section-end.html} +0 -0
  120. data/after_templates/{rag_tailwind_daisyui.rb → rag/tailwind_daisyui/_.rb} +1 -1
  121. data/after_templates/{rag_tailwind_daisyui → rag/tailwind_daisyui}/index.html.erb +0 -0
  122. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/Procfile.dev +0 -0
  123. data/after_templates/{rag_tailwind_emulating_bootstrap.rb → rag/tailwind_emulating_bootstrap/_.rb} +1 -1
  124. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/application.html.erb +0 -0
  125. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/application.tailwind.css +0 -0
  126. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/application_controller.rb +0 -0
  127. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/home/_example.html.erb +0 -0
  128. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/home/bootstrap.html.erb +0 -0
  129. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/home/home_controller.rb +0 -0
  130. data/after_templates/rag/tailwind_emulating_bootstrap/home/index.html.erb +0 -0
  131. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/home/tailwind.html.erb +0 -0
  132. data/after_templates/{rag_tailwind_hotwire.rb → rag/tailwind_hotwire/_.rb} +1 -1
  133. data/after_templates/{rag_tailwind_hotwire → rag/tailwind_hotwire}/home/controller.rb +0 -0
  134. data/after_templates/{rag_tailwind_hotwire → rag/tailwind_hotwire}/home/helper.rb +0 -0
  135. data/after_templates/{rag_tailwind_hotwire → rag/tailwind_hotwire}/home/increment.html.erb +0 -0
  136. data/after_templates/{rag_tailwind_hotwire → rag/tailwind_hotwire}/home/index.html +0 -0
  137. data/after_templates/{rag_tailwind_hotwire_flash.rb → rag/tailwind_hotwire_flash/_.rb} +1 -1
  138. data/after_templates/{rag_tailwind_hotwire_form.rb → rag/tailwind_hotwire_form/_.rb} +1 -1
  139. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/_contact.html.erb +0 -0
  140. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/_count.html.erb +0 -0
  141. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/_flash.html.erb +0 -0
  142. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/_form.html.erb +0 -0
  143. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/_list.html.erb +0 -0
  144. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/application.html.erb +0 -0
  145. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/application.js +0 -0
  146. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/application.tailwind.css +0 -0
  147. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/application_helper.rb +0 -0
  148. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/contact.rb +0 -0
  149. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/contacts_controller.rb +0 -0
  150. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/create.turbo_stream.erb +0 -0
  151. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/edit.html.erb +0 -0
  152. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/index.html.erb +0 -0
  153. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/new.html.erb +0 -0
  154. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/show.html.erb +0 -0
  155. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/update.turbo_stream.erb +0 -0
  156. data/after_templates/{rag_tailwind_hotwire_form_search.rb → rag/tailwind_hotwire_form_search/_.rb} +1 -3
  157. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/_contact.html.erb +0 -0
  158. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/_count.html.erb +0 -0
  159. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/_flash.html.erb +0 -0
  160. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/_form.html.erb +0 -0
  161. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/_list.html.erb +0 -0
  162. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/_theme_changer.html.erb +0 -0
  163. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/application.html.erb +0 -0
  164. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/application.js +0 -0
  165. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/application.tailwind.css +0 -0
  166. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/application_helper.rb +0 -0
  167. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/contact.rb +0 -0
  168. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/contacts_controller.rb +0 -0
  169. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/create.turbo_stream.erb +0 -0
  170. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/edit.html.erb +0 -0
  171. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/index.html.erb +0 -0
  172. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/new.html.erb +0 -0
  173. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/search_controller.js +0 -0
  174. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/show.html.erb +0 -0
  175. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/theme_changer_controller.js +0 -0
  176. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/update.turbo_stream.erb +0 -0
  177. data/docs/last_run/app_generator_class.json +430 -0
  178. data/docs/last_run/app_generator_data.json +49 -0
  179. data/docs/last_run/rails_options_class.json +430 -0
  180. data/docs/last_run/rails_options_data.json +57 -0
  181. data/docs/project-plan/project.drawio +49 -46
  182. data/docs/project-plan/project_todo.svg +1 -1
  183. data/exe/rag +2 -0
  184. data/lib/rails_app_generator/addons/annotate.rb +0 -3
  185. data/lib/rails_app_generator/addons/twilio_ruby.rb +13 -0
  186. data/lib/rails_app_generator/app_generator.rb +37 -162
  187. data/lib/rails_app_generator/cli/profile.rb +3 -1
  188. data/lib/rails_app_generator/configuration/rag_configuration.rb +18 -0
  189. data/lib/rails_app_generator/configuration/rag_configuration_extension.rb +14 -0
  190. data/lib/rails_app_generator/options/build_option.rb +14 -9
  191. data/lib/rails_app_generator/options/options_builder.rb +57 -9
  192. data/lib/rails_app_generator/options/rails_options.rb +6 -68
  193. data/lib/rails_app_generator/rag_initializer.rb +252 -0
  194. data/lib/rails_app_generator/util.rb +26 -0
  195. data/lib/rails_app_generator/version.rb +1 -1
  196. data/lib/rails_app_generator.rb +4 -1
  197. data/package-lock.json +2 -2
  198. data/package.json +1 -1
  199. data/profiles/addons/mini_magick.json +2 -1
  200. data/profiles/application/printspeak.json +12 -0
  201. data/profiles/default/printspeak.json +12 -0
  202. data/profiles/{rag-printspeak.json → printspeak.json} +3 -2
  203. data/profiles/{rag-bootstrap.json → rag/bootstrap.json} +1 -1
  204. data/profiles/{rag-devise.json → rag/devise.json} +1 -1
  205. data/profiles/{rag-import-map.json → rag/import-map.json} +1 -1
  206. data/profiles/{rag-simple.json → rag/simple.json} +3 -2
  207. data/profiles/{rag-tailwind-daisyui.json → rag/tailwind-daisyui.json} +1 -1
  208. data/profiles/{rag-tailwind-emulating-bootstrap.json → rag/tailwind-emulating-bootstrap.json} +2 -3
  209. data/profiles/{rag-tailwind-hotwire-flash.json → rag/tailwind-hotwire-flash.json} +1 -1
  210. data/profiles/{rag-tailwind-hotwire-form-search.json → rag/tailwind-hotwire-form-search.json} +1 -1
  211. data/profiles/{rag-tailwind-hotwire-form.json → rag/tailwind-hotwire-form.json} +1 -1
  212. data/profiles/{rag-tailwind-hotwire.json → rag/tailwind-hotwire.json} +1 -1
  213. data/profiles/{rag-tailwind.json → rag/tailwind.json} +3 -2
  214. data/tasks/profile.thor +1 -1
  215. data/templates/thor_task/addon/addon.tt +2 -6
  216. data/templates/thor_task/profile/after_template.rb +1 -0
  217. metadata +208 -130
  218. data/after_templates/rag_printspeak.rb +0 -36
  219. data/profiles/rag-add-some-pages.json +0 -11
  220. data/profiles/rag-sample.json +0 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b5005b34988e8bf214b22d0f09e109ec5df50c29dfac7c677586ecf7b53c112d
4
- data.tar.gz: 1a2e5b7f16bb4f98d401ed8d475373925b4f72c50e67f38c51d53272989ab74c
3
+ metadata.gz: f969c428bcfdfcb4a37a921395ff2dadb07f686c2e26eb85a9e994cad242949d
4
+ data.tar.gz: f92ddbba14defa00f7e2f0770e851625927915308e131da8e669e2a6b937ea0a
5
5
  SHA512:
6
- metadata.gz: 587960fc7b519882bc63ae213a0af9309597b2a367ce8f556ca1f0216748f5f963b65167f4b71e30ab517074adeaaf709a9eee4d4adee80b1d934d6cf7816f17
7
- data.tar.gz: beba122ba762ab6dfa425ad3ccf30c25de6da726ea9caf49e7c68c4552f23b7ba6e2a52ab655629d30aa1707bb7b2d7e1e8c54f13c19e18947dc962137328f96
6
+ metadata.gz: 229cbfd43a9b2efcbd6097745529d99a7c5ea074c80f96623e24a41f78b03ab95f158b3512130a99b361dccdb9445c07346557bdab548f7adea67ac726cf0074
7
+ data.tar.gz: fd63273e00b4a070d53e1da72a0064b2473b38b47544a725015bd5788c708cf6c72db91ca7370bbbe882df47e064b62bcf7374e0aed4f6b3ffec53cbd89746bb
@@ -13,7 +13,12 @@ KManager.action :project_plan do
13
13
 
14
14
  grid_layout(y:90, direction: :horizontal, grid_h: 80, grid_w: 320, wrap_at: 3, grid: 0)
15
15
 
16
- todo(title: 'generator for new profiles')
16
+ todo(title: 'add google fonts')
17
+ # <link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
18
+ # <link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700" rel="stylesheet" type="text/css" />
19
+
20
+ todo(title: 'broken profile - tailwind-hotwire-form - tailwind-hotwire-form-search, tailwind-hotwire-flash, ')
21
+
17
22
  todo(title: 'look at the sample tailwind pages in P7 and turn them into an addon')
18
23
 
19
24
  todo(title: 'add auto open flag to profile and command line')
@@ -42,7 +47,6 @@ KManager.action :project_plan do
42
47
  todo(title: 'add addon - twilio')
43
48
  todo(title: 'add addon - honeybadger')
44
49
 
45
-
46
50
  todo(title: 'add profile - rails-html-sanitizer')
47
51
  todo(title: 'add profile - tailwind-emulating-bootstrap')
48
52
  todo(title: 'add profile - tailwind-hotwire-form-search')
@@ -56,7 +60,6 @@ KManager.action :project_plan do
56
60
  todo(title: 'add diff tool - open in editor')
57
61
  todo(title: 'add diff tool supporting lhs only, rhs only, same and different')
58
62
  todo(title: 'add project plan to do list')
59
-
60
63
  end
61
64
  .cd(:docs)
62
65
  .save('project-plan/project.drawio')
data/.rubocop.yml CHANGED
@@ -13,13 +13,14 @@ AllCops:
13
13
  - "a/**/*"
14
14
  - "after_templates/**/*"
15
15
  - "templates/**/*"
16
+ - "lib/rails_app_generator/rag_initializer.rb"
16
17
 
17
18
  Metrics/BlockLength:
18
19
  Exclude:
19
20
  - "**/spec/**/*"
20
21
  - "*.gemspec"
21
22
  - "lib/rails_app_generator/app_generator.rb"
22
- IgnoredMethods:
23
+ AllowedMethods:
23
24
  - configure
24
25
  - context
25
26
  - define
data/CHANGELOG.md CHANGED
@@ -1,3 +1,32 @@
1
+ ## [0.2.1](https://github.com/klueless-io/rails_app_generator/compare/v0.2.0...v0.2.1) (2022-08-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * refactor rag examples ([ef5b1f3](https://github.com/klueless-io/rails_app_generator/commit/ef5b1f308cf7e24057aa917d9aaa1c8bd92edd32))
7
+ * refactor rag examples ([f06a268](https://github.com/klueless-io/rails_app_generator/commit/f06a2685793e215476787887ba62fb855a89d01a))
8
+
9
+ # [0.2.0](https://github.com/klueless-io/rails_app_generator/compare/v0.1.28...v0.2.0) (2022-08-08)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * cops ([e23bdee](https://github.com/klueless-io/rails_app_generator/commit/e23bdee8904cc8e0e9040ba1a4cb9c819587cec6))
15
+ * fix failing specs ([c13f7f8](https://github.com/klueless-io/rails_app_generator/commit/c13f7f8a858905f79c788ab0fd316a2aa826fb24))
16
+
17
+
18
+ ### Features
19
+
20
+ * big refactor on the addon configuration ([24f23e0](https://github.com/klueless-io/rails_app_generator/commit/24f23e0624f2e4cf8447b6cbb094b7572535149b))
21
+
22
+ ## [0.1.28](https://github.com/klueless-io/rails_app_generator/compare/v0.1.27...v0.1.28) (2022-08-06)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * refactor Addon ([0c9add2](https://github.com/klueless-io/rails_app_generator/commit/0c9add25a438130cd643466aa9a6af2cb9c50b03))
28
+ * rename registered_option to class_option ([a12d802](https://github.com/klueless-io/rails_app_generator/commit/a12d80211038f0bef88f2a051026368e3dadbf6e))
29
+
1
30
  ## [0.1.27](https://github.com/klueless-io/rails_app_generator/compare/v0.1.26...v0.1.27) (2022-08-06)
2
31
 
3
32
 
@@ -46,17 +46,3 @@ def setup_db
46
46
  db_migrate
47
47
  rails_command('db:seed')
48
48
  end
49
-
50
- # Other template command examples
51
- # css_install('tailwind')
52
- # rails_command('db:migrate')
53
- # bundle_add('hotwire-rails')
54
- # rails_command('hotwire:install')
55
- # run('bin/importmap pin sortablejs')
56
- # run('npm install daisyui')
57
- # create_file 'app/assets/stylesheets/custom-bootstrap-import.scss' , read_template('custom-bootstrap-import.scss')
58
- # append_to_file 'app/assets/config/manifest.js' , read_template('manifest.js')
59
- # insert_into_file 'app/views/layouts/application.html.erb', read_template('application.html.erb'),
60
- # before: %( <%= javascript_include_tag "application", "data-turbo-track": "reload", defer: true %>)
61
- # gsub_file 'app/views/layouts/application.html.erb', %(container mx-auto mt-28 px-5 flex), 'container mx-auto px-5'
62
- # template 'home.css', 'app/assets/stylesheets/home.css'
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # require 'pry'
3
+ require 'pry'
4
4
 
5
5
  # Manipulate images with minimal use of memory via ImageMagick / GraphicsMagick
6
6
  #
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Description goes here
4
+ #
5
+ # exe/rag addons/printspeak
6
+
7
+ self.local_template_path = File.dirname(__FILE__)
8
+
9
+ gac 'base rails 7 image created'
10
+
11
+ add_controller('home', 'index')
12
+ add_controller('page', 'blog', 'readme', 'about', 'contact', 'faq', 'terms', 'privacy')
13
+
14
+ route("root 'home#index'")
15
+
16
+ force_copy
17
+
18
+ copy_file 'app/controllers/home_controller.rb' , 'app/controllers/home_controller.rb'
19
+ copy_file 'app/views/home/index.html.erb' , 'app/views/home/index.html.erb'
20
+
21
+ copy_file 'app/views/layouts/_alerts.html.erb' , 'app/views/layouts/_alerts.html.erb'
22
+ copy_file 'app/views/layouts/_navbar.html.erb' , 'app/views/layouts/_navbar.html.erb'
23
+ copy_file 'app/views/layouts/_footer.html.erb' , 'app/views/layouts/_footer.html.erb'
24
+ template 'app/views/layouts/application.html.erb' , 'app/views/layouts/application.html.erb'
25
+
26
+ template 'db/seeds.rb' , 'db/seeds.rb'
27
+
28
+ after_bundle do
29
+ directory "app/assets/images"
30
+ directory "app/assets/stylesheets"
31
+ directory "app/views/page"
32
+
33
+ setup_db
34
+ end
35
+
36
+ def setup_db
37
+ add_scaffold('post', 'title', 'body:text')
38
+ add_scaffold('people', 'first_name', 'last_name', 'age:integer', 'address:text')
39
+
40
+ db_migrate
41
+ end
42
+
43
+ # Other template command examples
44
+ # css_install('tailwind')
45
+ # rails_command('db:migrate')
46
+ # bundle_add('hotwire-rails')
47
+ # rails_command('hotwire:install')
48
+ # run('bin/importmap pin sortablejs')
49
+ # run('npm install daisyui')
50
+ # create_file 'app/assets/stylesheets/custom-bootstrap-import.scss' , read_template('custom-bootstrap-import.scss')
51
+ # append_to_file 'app/assets/config/manifest.js' , read_template('manifest.js')
52
+ # insert_into_file 'app/views/layouts/application.html.erb', read_template('application.html.erb'),
53
+ # before: %( <%= javascript_include_tag "application", "data-turbo-track": "reload", defer: true %>)
54
+ # gsub_file 'app/views/layouts/application.html.erb', %(container mx-auto mt-28 px-5 flex), 'container mx-auto px-5'
55
+ # template 'home.css', 'app/assets/stylesheets/home.css'
@@ -0,0 +1 @@
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 579.74 579.74"><defs><style>.cls-1{fill:none;stroke:#000;stroke-miterlimit:10;stroke-width:6px;}</style></defs><line class="cls-1" x1="2.12" y1="2.12" x2="577.62" y2="577.62"/><line class="cls-1" x1="2.12" y1="577.62" x2="577.62" y2="2.12"/></svg>
@@ -0,0 +1,34 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 2030.6 546.3" style="enable-background:new 0 0 2030.6 546.3;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#CED4DA;}
7
+ </style>
8
+ <g>
9
+ <path class="st0" d="M1045.4,269.1c-16.8,0-28.9,5.5-41.1,11.1v126.7c11.7,1.1,18.5,1.1,29.6,1.1c40.2,0,45.8-18.4,45.8-44.2v-60.5
10
+ C1079.7,284.3,1073.4,269.1,1045.4,269.1L1045.4,269.1z M778.1,262.2c-27.9,0-34.3,15.3-34.3,34.3v10.7h68.6v-10.7
11
+ C812.4,277.5,806,262.2,778.1,262.2z M260.4,394.1c0,15,7.1,22.8,22.7,22.8c16.8,0,26.7-5.5,39-11.1v-30.1h-36.7
12
+ C268,375.7,260.4,379,260.4,394.1L260.4,394.1z M1305.4,269.1c-28,0-37.7,15.3-37.7,34.3v69.4c0,19.1,9.7,34.4,37.7,34.4
13
+ c27.9,0,37.7-15.3,37.7-34.4v-69.4C1343,284.3,1333.3,269.1,1305.4,269.1z M123.3,471.8H41.1v-199H0v-68.6h41.1v-41.2
14
+ c0-55.9,23.2-89.2,89.1-89.2H185v68.6h-34.3c-25.7,0-27.3,9.6-27.3,27.5l-0.1,34.3h62.1l-7.3,68.6h-54.9L123.3,471.8L123.3,471.8z
15
+ M404.3,472.4h-68.5l-3-17.3c-31.3,17.3-59.2,20.1-77.6,20.1c-50.3,0-77-33.6-77-80c0-54.8,31.2-74.3,87-74.3H322V309
16
+ c0-28-3.2-36.2-46.2-36.2h-70.3l6.9-68.6h76.8c94.3,0,115,29.8,115,105.3L404.3,472.4L404.3,472.4z M637.3,277.9
17
+ c-42.6-7.3-54.9-8.9-75.4-8.9c-36.9,0-48,8.1-48,39.4v59.2c0,31.3,11.1,39.5,48,39.5c20.5,0,32.8-1.6,75.4-9V465
18
+ c-37.3,8.4-61.7,10.6-82.2,10.6c-88.3,0-123.4-46.4-123.4-113.5v-48c0-67.1,35.1-113.6,123.4-113.6c20.6,0,44.9,2.2,82.2,10.6
19
+ V277.9L637.3,277.9z M894.6,362H743.8v5.5c0,31.3,11.1,39.5,48,39.5c33.1,0,53.3-1.6,95.9-9V465c-41.1,8.4-62.4,10.6-102.7,10.6
20
+ c-88.3,0-123.4-46.4-123.4-113.5v-54.9c0-58.7,26-106.7,116.5-106.7s116.5,47.5,116.5,106.7V362z M1161.9,363.3
21
+ c0,64.8-18.5,112.1-130.7,112.1c-40.5,0-64.3-3.6-109-10.4V94.5l82.2-13.7v129.6c17.8-6.6,40.8-10,61.7-10
22
+ c82.2,0,95.9,36.9,95.9,96.1L1161.9,363.3L1161.9,363.3z M1425.3,364.7c0,55.9-23.1,110.1-119.7,110.1
23
+ c-96.6,0-120.1-54.2-120.1-110.1v-54c0-55.9,23.5-110.2,120.1-110.2c96.6,0,119.7,54.2,119.7,110.2V364.7L1425.3,364.7z
24
+ M1688.6,364.7c0,55.9-23.1,110.1-119.7,110.1c-96.6,0-120.1-54.2-120.1-110.1v-54c0-55.9,23.5-110.2,120.1-110.2
25
+ c96.6,0,119.7,54.2,119.7,110.2V364.7L1688.6,364.7z M1958.8,471.8h-89.1l-75.3-125.8v125.8h-82.2V94.5l82.2-13.7v242.9l75.3-119.4
26
+ h89.1l-82.3,130.3L1958.8,471.8z M1568.7,269.1c-27.9,0-37.6,15.3-37.6,34.3v69.4c0,19.1,9.7,34.4,37.6,34.4
27
+ c27.9,0,37.8-15.3,37.8-34.4v-69.4C1606.4,284.3,1596.6,269.1,1568.7,269.1L1568.7,269.1z M2005.7,424.9
28
+ c13.8,0,24.9,11.3,24.9,25.4c0,14.3-11,25.5-25,25.5c-13.9,0-25.1-11.2-25.1-25.5c0-14.1,11.3-25.4,25.1-25.4H2005.7z
29
+ M2005.6,428.9c-11.2,0-20.3,9.6-20.3,21.4c0,12.1,9.1,21.5,20.4,21.5c11.3,0.1,20.3-9.5,20.3-21.4c0-11.9-9-21.6-20.3-21.6H2005.6
30
+ z M2000.9,465.1h-4.5v-28.3c2.4-0.3,4.6-0.7,8-0.7c4.3,0,7.1,0.9,8.8,2.1c1.7,1.3,2.6,3.2,2.6,5.9c0,3.7-2.5,6-5.5,6.9v0.2
31
+ c2.5,0.5,4.2,2.7,4.7,6.9c0.7,4.4,1.3,6.1,1.8,7h-4.7c-0.7-0.9-1.4-3.5-1.9-7.2c-0.7-3.6-2.5-5-6.1-5h-3.1L2000.9,465.1
32
+ L2000.9,465.1z M2000.9,449.4h3.3c3.7,0,6.9-1.4,6.9-4.9c0-2.5-1.8-5-6.9-5c-1.5,0-2.5,0.1-3.3,0.2V449.4L2000.9,449.4z"/>
33
+ </g>
34
+ </svg>
@@ -0,0 +1,35 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 2500 928" style="enable-background:new 0 0 2500 928;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#CED4DA;}
7
+ </style>
8
+ <path class="st0" d="M307.9,112.1h22.2c77.2,1.7,153.1,32.7,207.6,87.7c-20.1,20.6-40.7,40.3-60.4,60.8
9
+ c-30.6-27.7-67.5-49.1-107.8-56.6c-59.6-12.6-123.7-1.3-173.7,32.7c-54.5,35.7-91.4,96.1-99.4,160.7c-8.8,63.8,9.2,130.9,50.8,180.4
10
+ c39.8,48.2,100.7,78.4,163.6,80.5c58.7,3.4,120-14.7,162.8-55.8c33.6-28.9,49.1-73,54.1-115.8c-69.6,0-139.3,0.4-208.9,0v-86.4H612
11
+ c15.1,92.7-6.7,197.1-77.2,263.4c-47,47-112,74.7-178.3,80.1c-64.2,6.3-130.5-5.9-187.5-36.9c-68.4-36.5-122.9-98.2-149.7-170.7
12
+ C-5.9,469.5-6.3,394,17.2,326.8c21.4-61.2,62.5-115.4,115.4-153.1C183.3,136.4,245,115.8,307.9,112.1z"/>
13
+ <path class="st0" d="M1989.9,133.9h89.8v599c-29.8,0-60,0.4-89.8-0.4C1990.4,533.2,1989.9,333.5,1989.9,133.9L1989.9,133.9z"/>
14
+ <path class="st0" d="M811.7,341.5C867,331,927,342.8,972.7,375.9c41.5,29.4,70.5,75.5,79.3,125.8c11.3,58.3-2.9,122.1-40.7,168.2
15
+ c-40.7,51.6-107.4,79.3-172.4,75.1c-59.6-3.4-117.4-33.1-152.7-81.8c-39.8-53.7-49.5-127.5-27.7-190.4
16
+ C680.4,405.3,742,353.7,811.7,341.5 M824.2,421.2c-22.7,5.9-43.6,18.9-58.7,37.3c-40.7,48.7-38.2,127.9,6.7,173.2
17
+ c25.6,26,64.2,38.2,99.8,31c33.1-5.9,62.1-28.1,78-57.5c27.7-49.9,19.7-118.7-22.7-157.7C900.2,422.5,860.3,412,824.2,421.2
18
+ L824.2,421.2z"/>
19
+ <path class="st0" d="M1256.3,341.5c63.3-12.2,132.6,5.5,179.9,49.9c77.2,69.2,85.6,198.8,19.7,278.5c-39.8,50.3-104.4,78-168.2,75.1
20
+ c-60.8-1.7-120.8-31.9-156.9-81.8c-40.7-54.9-49.5-130.5-26.4-194.6C1127.5,403.2,1187.9,353.3,1256.3,341.5 M1268.9,421.2
21
+ c-22.7,5.9-43.6,18.9-58.7,36.9c-40.3,47.8-38.6,125.8,4.6,171.6c25.6,27.3,65.4,40.7,102.3,33.1c32.7-6.3,62.1-28.1,78-57.5
22
+ c27.3-50.3,19.3-119.1-23.5-158.1C1344.4,422.1,1304.5,412,1268.9,421.2L1268.9,421.2z"/>
23
+ <path class="st0" d="M1633.4,365.8c48.2-30.2,112.4-38.6,164.4-12.6c16.4,7.1,29.8,19.3,42.8,31.5c0.4-11.3,0-23.1,0.4-34.8
24
+ c28.1,0.4,56.2,0,84.7,0.4v370c-0.4,55.8-14.7,114.9-54.9,155.6c-44,44.9-111.6,58.7-172.4,49.5c-65-9.6-121.6-57-146.8-117
25
+ c25.2-12.2,51.6-21.8,77.6-33.1c14.7,34.4,44.5,63.8,81.8,70.5c37.3,6.7,80.5-2.5,104.9-33.6c26-31.9,26-75.5,24.7-114.5
26
+ c-19.3,18.9-41.5,35.7-68.4,41.9c-58.3,16.4-122.5-3.8-167.4-43.2c-45.3-39.4-72.1-100.3-69.6-160.7
27
+ C1536.5,467.4,1575.1,401.5,1633.4,365.8 M1720.2,419.5c-25.6,4.2-49.5,18.5-65.9,38.2c-39.4,47-39.4,122.1,0.4,168.2
28
+ c22.7,27.3,59.1,42.4,94.4,38.6c33.1-3.4,63.8-24.3,80.1-53.3c27.7-49.1,23.1-115.8-14.3-158.6
29
+ C1791.9,426.2,1755,413.2,1720.2,419.5L1720.2,419.5z"/>
30
+ <path class="st0" d="M2187.5,387.2c50.3-47,127.9-62.9,192.5-38.2c61.2,23.1,100.3,81.4,120,141.4c-91,37.8-181.6,75.1-272.7,112.8
31
+ c12.6,23.9,31.9,45.7,57.9,54.5c36.5,13,80.1,8.4,110.7-15.9c12.2-9.2,21.8-21.4,31-33.1c23.1,15.5,46.1,30.6,69.2,46.1
32
+ c-32.7,49.1-87.7,83.5-146.8,88.9c-65.4,8-135.1-17.2-177.4-68.4C2102.3,594.9,2109.1,459.8,2187.5,387.2 M2232.4,464.8
33
+ c-14.3,20.6-20.1,45.7-19.7,70.5c60.8-25.2,121.6-50.3,182.5-75.9c-10.1-23.5-34.4-37.8-59.1-41.5
34
+ C2296.1,410.7,2254.6,432.1,2232.4,464.8z"/>
35
+ </svg>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 2500 1000" style="enable-background:new 0 0 2500 1000;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#CED4DA;}
7
+ </style>
8
+ <path class="st0" d="M0,0v68.4h486.6V0H0z M555.6,0v68.4H1249c0,0-70.8-68.4-164.6-68.4H555.6z M1385.1,0v68.4h419.5L1779.7,0
9
+ H1385.1z M2105.4,0l-24.9,68.4h415.7V0H2105.4z M0,133.1v68.4h486.6v-68.4H0z M555.6,133.2v68.3h773.9c0,0-9-52.7-24.8-68.3
10
+ L555.6,133.2L555.6,133.2z M1385.1,133.2v68.3h465.5l-23-68.3L1385.1,133.2L1385.1,133.2z M2055.6,133.2l-23,68.3h463.7v-68.3
11
+ H2055.6z M139.8,266.1v68.5h210.7v-68.5L139.8,266.1L139.8,266.1z M695.4,266.1v68.5h210.7v-68.5L695.4,266.1L695.4,266.1z
12
+ M1111.1,266.1v68.5h210.7c0,0,13.4-36.2,13.4-68.5L1111.1,266.1L1111.1,266.1z M1524.9,266.1v68.5h373.6l-24.9-68.5L1524.9,266.1
13
+ L1524.9,266.1z M2009.7,266.1l-25,68.5h375.5v-68.5L2009.7,266.1L2009.7,266.1z M139.8,399.3v68.4h210.7v-68.4H139.8L139.8,399.3z
14
+ M695.4,399.3v68.4h538.3c0,0,45-35.1,59.4-68.4H695.4z M1524.9,399.3v68.4h210.7v-38.1l13.4,38.1h386l14.4-38.1v38.1h210.7v-68.4
15
+ h-395.6l-21,57.9l-21.1-57.9H1524.9z M139.8,532.3v68.4h210.7v-68.4H139.8z M695.4,532.3v68.4h597.7c-14.3-33.2-59.4-68.4-59.4-68.4
16
+ H695.4z M1524.9,532.3v68.4h210.7v-68.4H1524.9z M1773.9,532.3l25.5,68.4h289.5l24.2-68.4H1773.9z M2149.4,532.3v68.4h210.7v-68.4
17
+ H2149.4z M139.8,665.4v68.4h210.7v-68.4H139.8z M695.4,665.4v68.4h210.7v-68.4H695.4z M1111.1,665.4v68.4h224.1
18
+ c0-32.3-13.4-68.4-13.4-68.4H1111.1L1111.1,665.4z M1524.9,665.4v68.4h210.7v-68.4H1524.9z M1821.8,665.4l24.7,68.4h194l24.9-68.4
19
+ H1821.8z M2149.4,665.4v68.4h210.7v-68.4H2149.4z M3.8,798.4v68.5h486.6v-68.5H3.8z M555.6,798.4v68.5h749.1
20
+ c15.8-15.7,24.8-68.5,24.8-68.5H555.6L555.6,798.4z M1388.9,798.4v68.5h346.8v-68.5H1388.9z M1869.7,798.4l25.4,68.5h98.7l23.8-68.5
21
+ H1869.7z M2149.4,798.4v68.5H2500v-68.5H2149.4z M3.8,931.6v68.4h486.6v-68.4H3.8z M555.6,931.6v68.3h528.8
22
+ c93.8,0,164.6-68.3,164.6-68.3H555.6z M1388.9,931.6v68.4h346.8v-68.4H1388.9z M1917.9,931.6l24.4,68.2l4.2,0.1l24.8-68.3H1917.9z
23
+ M2149.4,931.6v68.4H2500v-68.4H2149.4z"/>
24
+ </svg>
@@ -0,0 +1,42 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 2500 534" style="enable-background:new 0 0 2500 534;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#CED4DA;}
7
+ </style>
8
+ <path class="st0" d="M2500,241.6v-44h-54.6v-68.4l-1.8,0.6l-51.3,15.7l-1,0.3v51.8h-80.9v-28.9c0-13.4,3-23.7,8.9-30.6
9
+ c5.9-6.8,14.3-10.2,25-10.2c7.7,0,15.7,1.8,23.7,5.4l2,0.9V88l-0.9-0.3c-7.5-2.7-17.7-4.1-30.3-4.1c-15.9,0-30.4,3.5-43,10.3
10
+ c-12.6,6.9-22.6,16.7-29.5,29.2c-6.9,12.5-10.5,26.9-10.5,42.8v31.7h-38v44h38v185.2h54.6V241.6h80.9v117.7c0,48.5,22.9,73,68,73
11
+ c7.4,0,15.2-0.9,23.2-2.6c8.1-1.7,13.6-3.5,16.9-5.4l0.7-0.4v-44.4l-2.2,1.5c-3,2-6.7,3.6-11,4.8c-4.3,1.2-8,1.8-10.8,1.8
12
+ c-10.6,0-18.4-2.8-23.2-8.5c-4.9-5.7-7.4-15.6-7.4-29.4V241.6H2500L2500,241.6z M2095.9,387.7c-19.8,0-35.4-6.6-46.4-19.5
13
+ c-11.1-13-16.7-31.5-16.7-55.1c0-24.3,5.6-43.3,16.7-56.6c11-13.1,26.5-19.8,46-19.8c18.9,0,34,6.4,44.8,19
14
+ c10.8,12.6,16.3,31.5,16.3,56.1c0,24.9-5.2,44-15.4,56.8C2131,381.3,2115.8,387.7,2095.9,387.7 M2098.3,192.1
15
+ c-37.8,0-67.8,11.1-89.2,32.9c-21.4,21.8-32.2,52.1-32.2,89.9c0,35.9,10.6,64.7,31.5,85.8c20.9,21,49.3,31.7,84.5,31.7
16
+ c36.6,0,66.1-11.2,87.4-33.4c21.4-22.1,32.2-52.1,32.2-89c0-36.4-10.2-65.5-30.2-86.4C2162.1,202.7,2133.9,192.1,2098.3,192.1
17
+ M1888.8,192.1c-25.7,0-47,6.6-63.2,19.5c-16.3,13-24.6,30.1-24.6,50.8c0,10.8,1.8,20.3,5.3,28.4c3.5,8.1,9,15.3,16.3,21.3
18
+ c7.2,6,18.4,12.2,33.2,18.6c12.4,5.1,21.7,9.4,27.6,12.9c5.8,3.3,9.8,6.7,12.1,10c2.2,3.2,3.4,7.6,3.4,13
19
+ c0,15.4-11.5,22.9-35.3,22.9c-8.8,0-18.8-1.8-29.8-5.5c-10.9-3.6-21.2-8.8-30.6-15.5l-2.3-1.6v52.5l0.8,0.4
20
+ c7.7,3.6,17.5,6.6,28.9,8.9c11.5,2.4,21.9,3.6,30.9,3.6c27.9,0,50.4-6.6,66.8-19.6c16.5-13.1,24.9-30.6,24.9-52.1
21
+ c0-15.4-4.5-28.7-13.4-39.4c-8.8-10.6-24.1-20.3-45.4-28.9c-17-6.8-27.9-12.5-32.4-16.8c-4.3-4.2-6.5-10.1-6.5-17.7
22
+ c0-6.7,2.7-12,8.3-16.3c5.6-4.3,13.4-6.6,23.2-6.6c9.1,0,18.4,1.4,27.6,4.3c9.2,2.8,17.4,6.6,24.1,11.2l2.2,1.5v-49.8l-0.9-0.4
23
+ c-6.3-2.7-14.5-5-24.5-6.8C1905.8,193,1896.7,192.1,1888.8,192.1 M1658.7,387.7c-19.8,0-35.4-6.6-46.4-19.5
24
+ c-11.1-13-16.7-31.5-16.7-55.1c0-24.3,5.6-43.3,16.7-56.6c11-13.1,26.5-19.8,46-19.8c18.9,0,34,6.4,44.8,19
25
+ c10.8,12.6,16.3,31.5,16.3,56.1c0,24.9-5.2,44-15.4,56.8C1693.9,381.3,1678.7,387.7,1658.7,387.7 M1661.2,192.1
26
+ c-37.8,0-67.8,11.1-89.2,32.9c-21.4,21.8-32.2,52.1-32.2,89.9c0,35.9,10.6,64.7,31.5,85.8c20.9,21,49.3,31.7,84.5,31.7
27
+ c36.6,0,66.1-11.2,87.4-33.4c21.4-22.1,32.2-52.1,32.2-89c0-36.4-10.2-65.5-30.2-86.4C1725,202.7,1696.7,192.1,1661.2,192.1
28
+ M1456.9,237.3v-39.7h-53.9v229.2h53.9V309.6c0-19.9,4.5-36.3,13.4-48.7c8.8-12.2,20.5-18.4,34.9-18.4c4.9,0,10.3,0.8,16.2,2.4
29
+ c5.8,1.6,10.1,3.3,12.6,5.1l2.3,1.6v-54.4l-0.9-0.4c-5-2.1-12.1-3.2-21.1-3.2c-13.5,0-25.7,4.4-36.1,12.9
30
+ c-9.1,7.5-15.7,17.9-20.7,30.7H1456.9z M1306.4,192.1c-24.7,0-46.8,5.3-65.6,15.8c-18.8,10.5-33.3,25.4-43.2,44.5
31
+ c-9.9,19-14.9,41.1-14.9,65.9c0,21.7,4.8,41.5,14.4,59c9.6,17.5,23.2,31.3,40.3,40.8c17.2,9.5,37,14.3,58.9,14.3
32
+ c25.6,0,47.5-5.1,65-15.2l0.7-0.4v-49.4l-2.3,1.7c-7.9,5.8-16.8,10.4-26.4,13.7c-9.5,3.3-18.2,5-25.8,5c-21.2,0-38.1-6.6-50.5-19.7
33
+ c-12.4-13.1-18.6-31.4-18.6-54.5c0-23.2,6.5-42.1,19.4-55.9c12.8-13.8,29.8-20.9,50.6-20.9c17.7,0,35,6,51.3,17.9l2.3,1.6v-52
34
+ l-0.7-0.4c-6.1-3.4-14.5-6.3-24.9-8.4C1326.2,193.2,1316,192.1,1306.4,192.1 M1145.6,197.6h-53.9v229.2h53.9V197.6L1145.6,197.6z
35
+ M1119.2,100c-8.9,0-16.6,3-23,9c-6.4,6-9.6,13.6-9.6,22.5c0,8.8,3.2,16.2,9.5,22c6.3,5.8,14,8.8,23.1,8.8c9,0,16.8-3,23.2-8.8
36
+ c6.4-5.9,9.6-13.3,9.6-22.1c0-8.6-3.2-16.1-9.4-22.2C1136.4,103.1,1128.6,100,1119.2,100 M984.7,180.7v246.1h55V107h-76.1
37
+ l-96.8,237.5L772.9,107h-79.2v319.8h51.7V180.7h1.8l99.2,246.1h39l97.6-246.1L984.7,180.7L984.7,180.7z"/>
38
+ <path class="st0" d="M253.6,253.7H0V0.1h253.6V253.7z"/>
39
+ <path class="st0" d="M533.6,253.7H280V0.1h253.6L533.6,253.7L533.6,253.7z"/>
40
+ <path class="st0" d="M253.6,533.9H0V280.3h253.6V533.9z"/>
41
+ <path class="st0" d="M533.6,533.9H280V280.3h253.6L533.6,533.9L533.6,533.9z"/>
42
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 228.66 39.08"><style>.cls-1{fill:#fed136;}</style><path class="cls-1" d="M23.08,15.17c.07.4.13.68.16.83a2.66,2.66,0,0,1,.05.62,4.76,4.76,0,0,1-.51,2.18,3,3,0,0,1-1.4,1.43,7.12,7.12,0,0,0-1.73-1.64,10.8,10.8,0,0,0-2.25-1.14,14.23,14.23,0,0,0-2.53-.65,16,16,0,0,0-2.55-.21,13,13,0,0,0-2.32.19,9.91,9.91,0,0,0-1.91.53,3.79,3.79,0,0,0-1.31.83,1.61,1.61,0,0,0-.48,1.14,2.73,2.73,0,0,0,1,1.57,12.76,12.76,0,0,0,2.09,1.56c.82.51,1.74,1,2.74,1.5s2,1,3,1.42c1.2.57,2.24,1.09,3.11,1.58a9.31,9.31,0,0,1,2.16,1.59,5.83,5.83,0,0,1,1.28,2A7.5,7.5,0,0,1,22,33.12a9.43,9.43,0,0,1-.6,3.38,7.84,7.84,0,0,1-1.75,2.74,8.21,8.21,0,0,1-2.78,1.83,9.85,9.85,0,0,1-3.65.65A17,17,0,0,1,9,41.12a20,20,0,0,1-4.3-1.65,12.61,12.61,0,0,1-3.33-2.4A4.09,4.09,0,0,1,0,34.18a5.48,5.48,0,0,1,.41-1.8,7.5,7.5,0,0,1,1.47-2.31A5.49,5.49,0,0,0,3,32.59a10.14,10.14,0,0,0,3.13,2.69,15.79,15.79,0,0,0,4,1.65,16.23,16.23,0,0,0,3.87.51,8.83,8.83,0,0,0,3.23-.5,5.89,5.89,0,0,0,1.94-1.18,3.94,3.94,0,0,0,1-1.4,4,4,0,0,0,.32-1.13,2.14,2.14,0,0,0-.65-1.37,7.65,7.65,0,0,0-1.67-1.27c-.69-.41-1.5-.83-2.42-1.26s-1.88-.85-2.87-1.27c-1.48-.66-2.77-1.28-3.84-1.86a14.83,14.83,0,0,1-2.65-1.77,5.88,5.88,0,0,1-1.53-1.9,5.1,5.1,0,0,1-.47-2.26,6.57,6.57,0,0,1,1.2-3.75A7.41,7.41,0,0,1,9.1,13.83a10,10,0,0,1,2.42-.71,15.83,15.83,0,0,1,2.53-.22,16.76,16.76,0,0,1,4.57.64A34.29,34.29,0,0,1,23.08,15.17Z" transform="translate(0 -12.9)"/><path class="cls-1" d="M25.92,25.47a2.16,2.16,0,0,1-.32-.9,5.75,5.75,0,0,1-.15-1.19,11.13,11.13,0,0,0,1.77.15h1.56c.36-.7.74-1.4,1.15-2.09s.82-1.32,1.21-1.89a17.57,17.57,0,0,1,1.09-1.45,4.35,4.35,0,0,1,.8-.77,4.29,4.29,0,0,1,.9.12c.37.09.74.19,1.12.32s.72.27,1,.41a1.89,1.89,0,0,1,.63.42c-.71.9-1.31,1.72-1.82,2.48s-1.06,1.64-1.65,2.62h1.44a10.58,10.58,0,0,0,1.47-.1,1.28,1.28,0,0,1,.28.44,1.5,1.5,0,0,1,.11.55,11.71,11.71,0,0,1-4.22.67c-.59,1.14-1.11,2.27-1.57,3.39s-.85,2.21-1.17,3.25a26.36,26.36,0,0,0-.74,2.94,13.17,13.17,0,0,0-.27,2.49q0,1.56,1.17,1.74a8.46,8.46,0,0,0,2-.53,6.68,6.68,0,0,0,1.7-1,1.42,1.42,0,0,1,.24.54,3.7,3.7,0,0,1-.72.73,12.51,12.51,0,0,1-1.12.83,10.47,10.47,0,0,1-1.17.69,3,3,0,0,1-.85.31,4.85,4.85,0,0,1-1.77-.35,7.38,7.38,0,0,1-1.61-.89,4.93,4.93,0,0,1-1.18-1.19,2.19,2.19,0,0,1-.46-1.29,11.94,11.94,0,0,1,.23-2.14c.15-.87.37-1.8.65-2.82s.62-2.08,1-3.19.79-2.21,1.24-3.3Z" transform="translate(0 -12.9)"/><path class="cls-1" d="M48.5,24.73a3.45,3.45,0,0,1,.83.12,4.92,4.92,0,0,1,.87.32,3.48,3.48,0,0,1,.65.41q.27.21.27.39c-.47,1-.91,2-1.31,3s-.74,2-1,2.89a24.37,24.37,0,0,0-.65,2.58,11.63,11.63,0,0,0-.23,2.09,5.4,5.4,0,0,0,.21,1.64,1.58,1.58,0,0,0,.71.94,3.64,3.64,0,0,1-1.1.46,4.72,4.72,0,0,1-1.2.18c-1.28,0-1.91-.87-1.91-2.62A16.45,16.45,0,0,1,46,31.6a21.14,21.14,0,0,1-1.63,3,22.3,22.3,0,0,1-1.87,2.52A11.21,11.21,0,0,1,40.52,39a4.79,4.79,0,0,1-1.79.83,2.46,2.46,0,0,1-2.12-1.2,5.2,5.2,0,0,1-.82-3,11.6,11.6,0,0,1,.85-4.19,18.86,18.86,0,0,1,2.18-4.09,15.66,15.66,0,0,1,2.88-3.14,4.81,4.81,0,0,1,3-1.27,2.89,2.89,0,0,1,.8.43,6.43,6.43,0,0,1,.85.74,5.91,5.91,0,0,1,.69.86,2,2,0,0,1,.32.76A6.31,6.31,0,0,0,44.45,27a14.3,14.3,0,0,0-2.73,2.81,16.49,16.49,0,0,0-2,3.51,9.17,9.17,0,0,0-.78,3.5.8.8,0,0,0,.5.85,5,5,0,0,0,2.37-1.76,33.44,33.44,0,0,0,3.26-4.76l.79-1.41c.3-.52.6-1.07.91-1.63l.9-1.72C48,25.83,48.24,25.27,48.5,24.73Z" transform="translate(0 -12.9)"/><path class="cls-1" d="M52.08,38.32c.11-.68.32-1.58.62-2.7s.64-2.32,1-3.58.83-2.53,1.27-3.81.89-2.42,1.31-3.43a17,17,0,0,1,.82-1.72,4.49,4.49,0,0,1,.78-1,5.82,5.82,0,0,1,1,.25,7.17,7.17,0,0,1,1,.42,10.06,10.06,0,0,1,.89.51,3,3,0,0,1,.6.52,12.47,12.47,0,0,0-1.68,2.58A26.67,26.67,0,0,0,58.31,30q1.9-1.7,3.38-3.26a26,26,0,0,0,2.74-3.47,1.24,1.24,0,0,1,.74-.17,2.8,2.8,0,0,1,1,.16,1.13,1.13,0,0,1,.64.44,9.39,9.39,0,0,0-.64,3.36,4.67,4.67,0,0,0,.46,2.34,2.52,2.52,0,0,1-.48.81,9.48,9.48,0,0,1-1,1.13A5.64,5.64,0,0,1,63.44,30a5.85,5.85,0,0,1-1.1-1.89,25,25,0,0,0-2.83,2.28,11.89,11.89,0,0,0-2,2.48A15.33,15.33,0,0,0,56.09,36c-.38,1.18-.76,2.59-1.11,4.22a3.32,3.32,0,0,1-.76-.23,6.46,6.46,0,0,1-.89-.48,6.29,6.29,0,0,1-.79-.6A1.65,1.65,0,0,1,52.08,38.32Z" transform="translate(0 -12.9)"/><path class="cls-1" d="M69.28,25.47a2.31,2.31,0,0,1-.32-.9,6.42,6.42,0,0,1-.14-1.19,11.13,11.13,0,0,0,1.77.15h1.56c.35-.7.74-1.4,1.15-2.09s.81-1.32,1.2-1.89a17.48,17.48,0,0,1,1.1-1.45,4.05,4.05,0,0,1,.8-.77,4.46,4.46,0,0,1,.9.12c.37.09.74.19,1.12.32s.72.27,1,.41a1.85,1.85,0,0,1,.64.42c-.71.9-1.32,1.72-1.82,2.48s-1.06,1.64-1.65,2.62H78a10.37,10.37,0,0,0,1.47-.1,1.17,1.17,0,0,1,.29.44,1.49,1.49,0,0,1,.1.55,11.62,11.62,0,0,1-4.21.67c-.59,1.14-1.12,2.27-1.58,3.39S73.26,30.86,73,31.9a28.93,28.93,0,0,0-.75,2.94,14,14,0,0,0-.26,2.49q0,1.56,1.17,1.74a8.38,8.38,0,0,0,2-.53,6.35,6.35,0,0,0,1.7-1,1.47,1.47,0,0,1,.25.54,3.53,3.53,0,0,1-.73.73,12.33,12.33,0,0,1-1.11.83,10.47,10.47,0,0,1-1.17.69,3.1,3.1,0,0,1-.85.31,4.85,4.85,0,0,1-1.77-.35,7.16,7.16,0,0,1-1.61-.89,4.93,4.93,0,0,1-1.18-1.19,2.2,2.2,0,0,1-.47-1.29,13,13,0,0,1,.23-2.14c.16-.87.38-1.8.66-2.82s.61-2.08,1-3.19.79-2.21,1.24-3.3Z" transform="translate(0 -12.9)"/><path class="cls-1" d="M112.61,19.52a6.68,6.68,0,0,1-1.2,3.92,9.49,9.49,0,0,1-3.29,2.85,7.24,7.24,0,0,1,2.14,2.24,5.61,5.61,0,0,1,.8,2.93,7.17,7.17,0,0,1-1.15,3.77,12.21,12.21,0,0,1-3.07,3.29,16.72,16.72,0,0,1-4.35,2.32,14.54,14.54,0,0,1-5,.88,10.74,10.74,0,0,1-4.84-1,7.78,7.78,0,0,1-3.23-3q.34-1.06.93-2.64c.39-1,.82-2.16,1.3-3.32s1-2.33,1.43-3.49.94-2.2,1.36-3.12c.9-2,1.7-3.67,2.41-5a24.86,24.86,0,0,1,2-3.15,26.71,26.71,0,0,0-3.54,1.36,9.33,9.33,0,0,0-2.34,1.47,2.91,2.91,0,0,1-.65-.63,8.15,8.15,0,0,1-.64-.94,6.29,6.29,0,0,1-.5-1.05,3.94,3.94,0,0,1-.23-.95,12,12,0,0,1,2.39-1.22,23.75,23.75,0,0,1,3.21-1,33.74,33.74,0,0,1,3.55-.68,26.83,26.83,0,0,1,3.49-.24,11.36,11.36,0,0,1,6.66,1.7A5.44,5.44,0,0,1,112.61,19.52ZM99.13,28a4,4,0,0,1-1.24-1c-.55,1.2-1.06,2.38-1.54,3.54s-.92,2.23-1.3,3.22-.68,1.86-.92,2.59A8.69,8.69,0,0,0,93.74,38a3.87,3.87,0,0,0,1.19.42,8.25,8.25,0,0,0,1.72.15,15.56,15.56,0,0,0,4.6-.68A13.63,13.63,0,0,0,105.11,36a9.93,9.93,0,0,0,2.65-2.64,5.53,5.53,0,0,0,1-3.11,3.51,3.51,0,0,0-2-3.37,16.2,16.2,0,0,1-6.23,1.14h-.76A3.79,3.79,0,0,1,99.13,28ZM106,15.7a14.6,14.6,0,0,0-1.57.09c-.56.06-1.14.15-1.75.27a1.33,1.33,0,0,1,.23.3c0,.1.11.21.16.33a10.77,10.77,0,0,0-.78,1.24c-.31.55-.65,1.18-1,1.9s-.77,1.51-1.19,2.39-.83,1.77-1.25,2.69a10.89,10.89,0,0,1,1.47-.23,16.47,16.47,0,0,1,1.71-.09c.31,0,.61,0,.91,0s.58.06.86.11a15.06,15.06,0,0,0,3.07-.83,10.86,10.86,0,0,0,2.35-1.28A5.48,5.48,0,0,0,110.7,21a3.51,3.51,0,0,0,.53-1.87,2.87,2.87,0,0,0-1.34-2.57A7.22,7.22,0,0,0,106,15.7Z" transform="translate(0 -12.9)"/><path class="cls-1" d="M117.53,40.27a4.51,4.51,0,0,1-3.22-1.77,6.31,6.31,0,0,1-1.2-4,11,11,0,0,1,.42-2.94,14.51,14.51,0,0,1,1.21-3,16.37,16.37,0,0,1,1.84-2.71,13.15,13.15,0,0,1,2.3-2.19,6.21,6.21,0,0,1,3.65-1.45,6.4,6.4,0,0,1,2.23,2.51l.32,0,.31,0c1.26,0,1.88,1.11,1.88,3.33a12.13,12.13,0,0,1-.73,4.23,12.61,12.61,0,0,1-2,3.63,12.09,12.09,0,0,1-3.08,2.75A12.45,12.45,0,0,1,117.53,40.27Zm1.81-11.15a15.33,15.33,0,0,0-1.13,1.77,16.13,16.13,0,0,0-.92,1.93,13,13,0,0,0-.6,1.87,6.79,6.79,0,0,0-.22,1.62,4.65,4.65,0,0,0,.29,1.62c.18.52.4.82.63.89a7.68,7.68,0,0,0,2.92-1.33,9.7,9.7,0,0,0,2.31-2.42,12.49,12.49,0,0,0,1.52-3.3,13.82,13.82,0,0,0,.55-3.93,7.84,7.84,0,0,0-.11-1.45,2.8,2.8,0,0,0-.35-.92A7.71,7.71,0,0,0,121.45,27,13.82,13.82,0,0,0,119.34,29.12Z" transform="translate(0 -12.9)"/><path class="cls-1" d="M133.15,40.27a4.47,4.47,0,0,1-3.22-1.77,6.25,6.25,0,0,1-1.21-4,10.62,10.62,0,0,1,.43-2.94,13.93,13.93,0,0,1,1.2-3,16.37,16.37,0,0,1,1.84-2.71,13.51,13.51,0,0,1,2.3-2.19,6.23,6.23,0,0,1,3.65-1.45,6.33,6.33,0,0,1,2.23,2.51l.32,0,.32,0c1.25,0,1.87,1.11,1.87,3.33a12.36,12.36,0,0,1-.72,4.23,12.87,12.87,0,0,1-2,3.63,12.09,12.09,0,0,1-3.08,2.75A12.39,12.39,0,0,1,133.15,40.27ZM135,29.12a15.33,15.33,0,0,0-1.13,1.77,17.83,17.83,0,0,0-.92,1.93,13,13,0,0,0-.6,1.87,7.34,7.34,0,0,0-.22,1.62,4.65,4.65,0,0,0,.29,1.62c.19.52.4.82.64.89a7.82,7.82,0,0,0,2.92-1.33,9.84,9.84,0,0,0,2.3-2.42,12.18,12.18,0,0,0,1.52-3.3,13.48,13.48,0,0,0,.55-3.93,7.84,7.84,0,0,0-.11-1.45,2.8,2.8,0,0,0-.35-.92A7.71,7.71,0,0,0,137.06,27,14.28,14.28,0,0,0,135,29.12Z" transform="translate(0 -12.9)"/><path class="cls-1" d="M146.32,25.47a2.16,2.16,0,0,1-.32-.9,5.66,5.66,0,0,1-.14-1.19,10.94,10.94,0,0,0,1.77.15h1.55c.36-.7.74-1.4,1.15-2.09s.82-1.32,1.21-1.89a15.52,15.52,0,0,1,1.1-1.45,4.07,4.07,0,0,1,.79-.77,4.46,4.46,0,0,1,.91.12c.36.09.73.19,1.11.32s.72.27,1,.41a1.79,1.79,0,0,1,.63.42c-.7.9-1.31,1.72-1.82,2.48s-1.06,1.64-1.64,2.62h1.43a10.58,10.58,0,0,0,1.47-.1,1.15,1.15,0,0,1,.28.44,1.5,1.5,0,0,1,.11.55,11.67,11.67,0,0,1-4.22.67c-.59,1.14-1.11,2.27-1.57,3.39s-.85,2.21-1.17,3.25a26.36,26.36,0,0,0-.74,2.94,13.17,13.17,0,0,0-.27,2.49q0,1.56,1.17,1.74a8.46,8.46,0,0,0,2-.53,6.51,6.51,0,0,0,1.7-1,1.66,1.66,0,0,1,.25.54,4.13,4.13,0,0,1-.73.73,11.22,11.22,0,0,1-1.12.83,11.36,11.36,0,0,1-1.16.69,3.1,3.1,0,0,1-.85.31,4.85,4.85,0,0,1-1.77-.35,7.16,7.16,0,0,1-1.61-.89,5,5,0,0,1-1.19-1.19,2.19,2.19,0,0,1-.46-1.29,13,13,0,0,1,.23-2.14c.15-.87.37-1.8.65-2.82s.62-2.08,1-3.19.79-2.21,1.23-3.3Z" transform="translate(0 -12.9)"/><path class="cls-1" d="M168.9,24.89a6.59,6.59,0,0,1-.23,1.4,8.34,8.34,0,0,1-.47,1.31,4.63,4.63,0,0,1-.61,1,.84.84,0,0,1-.6.39c-.26,0-.41-.2-.46-.53a1.13,1.13,0,0,1,.09-.34c.06-.15.12-.32.19-.51s.14-.38.2-.57a1.65,1.65,0,0,0,.09-.49,1.51,1.51,0,0,0-.23-.84.73.73,0,0,0-.62-.33c-.95,0-1.67.59-2.16,1.76a13.82,13.82,0,0,0-.74,5.18,1.57,1.57,0,0,0,0,.42h2.48a.85.85,0,0,1,0,.28.59.59,0,0,1-.14.46l-1.29.3a5.39,5.39,0,0,0-.73.23.59.59,0,0,0-.3.23,1,1,0,0,0-.05.33c0,.19,0,.38,0,.57s0,.42,0,.7a6.88,6.88,0,0,1-1.61,4.76,6.61,6.61,0,0,1-4.48,2.09,2.94,2.94,0,0,1-1-.28,5.19,5.19,0,0,1-1-.64,4.54,4.54,0,0,1-.83-.87,3.1,3.1,0,0,1-.5-1,6.11,6.11,0,0,1,.57-2.59,7.21,7.21,0,0,1,1.54-2.17,7.86,7.86,0,0,1,2.3-1.54,7.11,7.11,0,0,1,2.89-.59,8.42,8.42,0,0,0-.18-1.74c-.12-.57-.24-1.12-.37-1.65s-.26-1.06-.37-1.57a6.56,6.56,0,0,1-.18-1.51,4.93,4.93,0,0,1,.39-1.9,7,7,0,0,1,1-1.74,6.42,6.42,0,0,1,1.48-1.37,5.33,5.33,0,0,1,1.77-.78,3.23,3.23,0,0,1,1,.62,14.82,14.82,0,0,1,1.29,1.15,12.13,12.13,0,0,1,1.13,1.29A3.24,3.24,0,0,1,168.9,24.89ZM157.22,41a5.82,5.82,0,0,0,1.61-1,8,8,0,0,0,2.23-3.33,5.54,5.54,0,0,0,.34-1.88,4,4,0,0,0-1.56.66A9.54,9.54,0,0,0,157,38.34a2.86,2.86,0,0,0-.5,1.42A1.5,1.5,0,0,0,157.22,41Z" transform="translate(0 -12.9)"/><path class="cls-1" d="M171,25.47a2.16,2.16,0,0,1-.32-.9,5.66,5.66,0,0,1-.14-1.19,10.94,10.94,0,0,0,1.77.15h1.56c.35-.7.73-1.4,1.15-2.09s.81-1.32,1.2-1.89a15.52,15.52,0,0,1,1.1-1.45,4.07,4.07,0,0,1,.79-.77,4.46,4.46,0,0,1,.91.12c.36.09.73.19,1.11.32s.72.27,1,.41a1.79,1.79,0,0,1,.63.42c-.7.9-1.31,1.72-1.82,2.48s-1.05,1.64-1.64,2.62h1.43a10.58,10.58,0,0,0,1.47-.1,1.15,1.15,0,0,1,.28.44,1.5,1.5,0,0,1,.11.55,11.66,11.66,0,0,1-4.21.67c-.6,1.14-1.12,2.27-1.58,3.39s-.85,2.21-1.17,3.25a26.36,26.36,0,0,0-.74,2.94,13.17,13.17,0,0,0-.27,2.49q0,1.56,1.17,1.74a8.46,8.46,0,0,0,2-.53,6.51,6.51,0,0,0,1.7-1,1.66,1.66,0,0,1,.25.54,4.13,4.13,0,0,1-.73.73,11.22,11.22,0,0,1-1.12.83,11.36,11.36,0,0,1-1.16.69,3.1,3.1,0,0,1-.85.31,4.85,4.85,0,0,1-1.77-.35,7.16,7.16,0,0,1-1.61-.89,5,5,0,0,1-1.19-1.19,2.19,2.19,0,0,1-.46-1.29,13,13,0,0,1,.23-2.14c.15-.87.37-1.8.65-2.82s.62-2.08,1-3.19.79-2.21,1.23-3.3Z" transform="translate(0 -12.9)"/><path class="cls-1" d="M180.55,38.32c.12-.68.32-1.58.62-2.7s.64-2.32,1-3.58.83-2.53,1.28-3.81.88-2.42,1.31-3.43a17.28,17.28,0,0,1,.81-1.72,5.13,5.13,0,0,1,.78-1,6.15,6.15,0,0,1,1,.25,7.54,7.54,0,0,1,1,.42,8.8,8.8,0,0,1,.89.51,3,3,0,0,1,.6.52,12.47,12.47,0,0,0-1.68,2.58A29.42,29.42,0,0,0,186.78,30c1.28-1.13,2.4-2.22,3.38-3.26a26.08,26.08,0,0,0,2.75-3.47,1.22,1.22,0,0,1,.74-.17,2.75,2.75,0,0,1,.95.16,1.13,1.13,0,0,1,.64.44,9.61,9.61,0,0,0-.64,3.36,4.66,4.66,0,0,0,.47,2.34,3,3,0,0,1-.48.81,9.57,9.57,0,0,1-1,1.13,5.88,5.88,0,0,1-2.79-3.25A25.16,25.16,0,0,0,188,30.41a12.57,12.57,0,0,0-2,2.48A15.32,15.32,0,0,0,184.57,36c-.39,1.18-.76,2.59-1.12,4.22a3.47,3.47,0,0,1-.76-.23A7,7,0,0,1,181,38.93,1.65,1.65,0,0,1,180.55,38.32Z" transform="translate(0 -12.9)"/><path class="cls-1" d="M207.88,24.73a3.45,3.45,0,0,1,.83.12,4.92,4.92,0,0,1,.87.32,3.48,3.48,0,0,1,.65.41q.27.21.27.39c-.47,1-.91,2-1.31,3s-.74,2-1,2.89a24.37,24.37,0,0,0-.65,2.58,10.79,10.79,0,0,0-.23,2.09,5.4,5.4,0,0,0,.21,1.64,1.58,1.58,0,0,0,.71.94,3.64,3.64,0,0,1-1.1.46,4.72,4.72,0,0,1-1.2.18c-1.28,0-1.91-.87-1.91-2.62a16.7,16.7,0,0,1,1.34-5.52,21.14,21.14,0,0,1-1.63,3,22.3,22.3,0,0,1-1.87,2.52A11.21,11.21,0,0,1,199.9,39a4.79,4.79,0,0,1-1.79.83,2.46,2.46,0,0,1-2.12-1.2,5.2,5.2,0,0,1-.82-3,11.6,11.6,0,0,1,.85-4.19,18.86,18.86,0,0,1,2.18-4.09,15.37,15.37,0,0,1,2.88-3.14,4.81,4.81,0,0,1,3-1.27,2.89,2.89,0,0,1,.8.43,6.43,6.43,0,0,1,.85.74,5.91,5.91,0,0,1,.69.86,2,2,0,0,1,.32.76A6.31,6.31,0,0,0,203.83,27a14.3,14.3,0,0,0-2.73,2.81,16.49,16.49,0,0,0-2,3.51,9.17,9.17,0,0,0-.78,3.5.8.8,0,0,0,.5.85,5,5,0,0,0,2.37-1.76,33.44,33.44,0,0,0,3.26-4.76l.79-1.41c.3-.52.6-1.07.91-1.63l.9-1.72C207.34,25.83,207.62,25.27,207.88,24.73Z" transform="translate(0 -12.9)"/><path class="cls-1" d="M209.72,50.75c-.33-.09-.52-.45-.57-1.06a5.94,5.94,0,0,1-.19-1.1c0-.42-.05-.91-.05-1.45a11.83,11.83,0,0,1,.24-2c.17-.86.4-1.83.7-2.92s.65-2.26,1.08-3.52.89-2.54,1.41-3.84c.64-1.63,1.19-3,1.67-4.23s.86-2.23,1.18-3.1.58-1.59.78-2.16.36-1,.48-1.45a8.64,8.64,0,0,1,.42-1,13.36,13.36,0,0,1,.66-1.22c.24-.41.5-.8.76-1.17a4.92,4.92,0,0,1,.71-.83,9.44,9.44,0,0,1,2.33.64,3,3,0,0,1,1.35.88,7.92,7.92,0,0,0-1.13,1.44,23.25,23.25,0,0,0-1.24,2.12,25.29,25.29,0,0,0-1.1,2.36,17.08,17.08,0,0,0-.74,2.12,10.32,10.32,0,0,1,.92-1.31c.37-.47,1-1.12,1.73-1.95a14.22,14.22,0,0,1,2.46-2.07,4,4,0,0,1,2-.72,3.23,3.23,0,0,1,2.21.74,2.39,2.39,0,0,1,.87,1.91,15.52,15.52,0,0,1-.85,5.05,15,15,0,0,1-2.44,4.51A10.39,10.39,0,0,1,224,36.84a12.57,12.57,0,0,1-1.7,1.25,9.34,9.34,0,0,1-1.73.87,4.5,4.5,0,0,1-1.52.32,2.24,2.24,0,0,1-1.12-.27,1.36,1.36,0,0,1-.65-.65,11.69,11.69,0,0,0,2.69-2.27,20.19,20.19,0,0,0,2.42-3.34,26.61,26.61,0,0,0,1.95-4.09,27.19,27.19,0,0,0,1.26-4.46,16,16,0,0,0-2.43,1.54A12.33,12.33,0,0,0,221,27.92c-.85,1-1.52,1.87-2,2.51s-.9,1.18-1.22,1.63a10.31,10.31,0,0,0-.78,1.25c-.2.39-.42.87-.65,1.44-.33.75-.72,1.75-1.15,3s-.89,2.62-1.35,4.16-.92,3.17-1.38,4.9-.9,3.47-1.33,5.19a1,1,0,0,1-.67-.57c-.19-.21-.33-.36-.41-.46A.81.81,0,0,0,209.72,50.75Z" transform="translate(0 -12.9)"/></svg>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" standalone="yes"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="3324" height="573">
3
+ <path style="fill:#ffffff; stroke:none;" d="M0 0L0 267C6.50056 268.003 10.9002 273.792 16 277.625C24.3729 283.918 33.3521 289.447 43 293.573C63.9819 302.546 87.318 306 110 306C127.923 306 148.468 302.791 160.346 320.004C173.018 338.366 135.529 353.335 147.804 370.996C160.548 389.332 191.298 385.531 204.532 369.961C217.644 354.535 211.399 338.907 211.054 321C210.82 308.847 214.135 295.781 219.605 285C233.824 256.975 264.182 244.261 284.91 222C290.293 216.22 304.943 203.081 298.258 194.228C292.698 186.866 271.93 192.076 264 192.83C240.417 195.073 213.36 187.582 192 178.138C139.195 154.792 100.688 103.325 81.6921 50C76.1118 34.3349 74.143 18.0132 70 2L73 1L50 0L0 0z"/>
4
+ <path style="fill:#3997d3; stroke:none;" d="M70 2C84.0239 74.3141 120.819 148.95 193 178.988C214.762 188.045 241.201 195.095 265 192.83C273.344 192.036 292.622 186.94 298.257 195.109C304.036 203.487 289.157 216.566 283.961 222C263.577 243.318 234.326 256.217 220.12 283C213.985 294.566 210.528 308.863 211.04 322C211.679 338.392 216.761 352.418 206.073 366.999C193.019 384.807 163.07 389.965 148.533 370.996C135.48 353.963 173.761 338.054 160.347 319.015C148.834 302.672 129.069 306 112 306C88.342 306 63.7038 302.629 42 292.691C32.722 288.443 24.1113 283.04 16 276.87C10.8054 272.918 6.82744 267.515 0 267C0 309.277 31.057 346.876 70 361.575C83.6889 366.742 97.2054 365.87 111 369.239C122.513 372.051 126.488 382.155 134.09 389.96C141.591 397.66 152.354 402.563 163 403.83C177.365 405.54 192.203 405.229 206 400.302C215.072 397.062 223.244 390.234 233 389.174C246.952 387.657 259.225 394.853 272 399.305C300.673 409.297 335.215 413.439 355.674 438C360.717 444.053 364.486 451.483 366.795 459C383.784 514.321 319.77 552.737 274 524.533C255.334 513.031 248.327 494.786 242 475L235 476C235 489.709 237.579 501.639 243.759 514C286.169 598.819 425.711 591.066 453.562 498C470.925 439.977 437.11 385.672 380 368.721C351.239 360.184 320.147 363.73 291 357.112C259.996 350.072 238.763 316.052 258.105 287C261.461 281.96 266.153 277.366 271 273.761C274.982 270.799 279.32 268.506 284 266.865C320.359 254.111 338.2 297.736 371 301.714C389.922 304.008 408.434 287.984 427 284.614C447.326 280.925 467.91 285.305 488 279.573C543.318 263.787 586.159 212.629 586 155C576.031 159.649 568.11 170.638 559 177.14C542.142 189.17 522.238 197.455 502 201.789C480.124 206.475 458.336 208.262 436 207.996C423.333 207.845 410.079 203.576 398 209.328C372.68 221.384 394.77 245.158 396.915 261.83C398.298 272.579 383.947 272.527 377 271.195C373.226 270.472 369.526 269.51 366 267.957C355.908 263.513 348.614 253.572 343.756 244C332.963 222.731 329.34 196.477 338.453 174C348.518 149.173 370.977 132.228 356.741 103C341.498 71.7046 306.251 76.0469 277 76C229.08 75.9231 177.33 69.6349 135 45.4213C118.242 35.8353 103.663 24.6415 90 11C84.3309 5.34003 78.4792 -2.00372 70 2z"/>
5
+ <path style="fill:#ffffff; stroke:none;" d="M77 0L77 1C91.1144 9.15863 101.568 23.9733 115 33.5725C140.83 52.0315 171.825 63.9427 203 69.5756C231.074 74.6482 259.531 76 288 76C307.011 76 328.312 74.3292 343.999 87.3287C359.258 99.9729 365.93 122.584 357.688 141C352.257 153.132 342.299 162.358 337.695 175C328.949 199.014 333.257 228.319 346.464 250C354.165 262.644 377.839 280.851 393.775 269.91C401.551 264.573 394.436 253.837 391.309 248C384.722 235.703 383.119 218.462 397.001 210.363C408.204 203.827 420.901 207.431 433 207.961C451.383 208.766 469.837 207.529 488 204.725C512.235 200.984 536.582 193.056 557 179.255C567.563 172.115 575.719 162.243 586 155C586.038 212.537 541.947 263.893 487 279.573C467.232 285.214 447.026 281.069 427 284.435C408.943 287.47 390.094 303.718 372 301.71C344.849 298.696 332.665 271.143 307 265.669C275.853 259.026 248.943 285.381 251.09 316C254.001 357.543 300.256 359.762 332 362.089C382.326 365.778 438.45 383.578 454.561 438C471.888 496.528 426.234 569.278 363 572L363 573L3324 573L3324 402L3323 402C3316.66 421.842 3282.97 426.44 3268.04 413.66C3260.64 407.322 3260 398.058 3260 389L3281 389C3281.01 394.146 3281.09 399.891 3286.1 402.856C3293.78 407.391 3304.27 401.343 3301.57 392.093C3299.53 385.134 3287.89 383.112 3282 380.947C3267.53 375.633 3256.67 363.169 3262.1 347C3268.3 328.564 3298.18 323.113 3313 334.419C3320.63 340.245 3322.81 348.843 3323 358L3302 358C3301.65 353.74 3301.08 348.585 3296.89 346.319C3289.51 342.321 3279.98 350.046 3284.18 357.956C3286.93 363.135 3293.92 364.304 3299 366C3308.97 369.325 3319.52 373.089 3323 384L3324 384L3324 0L77 0z"/>
6
+ <path style="fill:#231f21; stroke:none;" d="M1589 329L1556 329C1556 339.502 1556.84 349.916 1560.03 360C1575.99 410.412 1630.42 422.629 1677 420.035C1711.13 418.135 1750.64 401.411 1761.28 366C1763.68 357.989 1764 350.292 1764 342C1764 284.209 1703.33 272.85 1658 263.211C1636.25 258.586 1603.49 252.515 1599.44 226C1594.87 196.067 1626.86 180.122 1652 180.001C1675 179.89 1700.29 185.007 1712.49 207C1716.79 214.767 1718.38 223.395 1720 232L1754 232C1748.14 207.373 1747.34 185.891 1725 168.899C1678.51 133.537 1576.87 143.856 1565.08 211C1563.78 218.453 1563.44 226.449 1564.17 234C1569.12 285.164 1633.09 292.175 1673 300.79C1694.7 305.473 1724.97 314.14 1728.7 340C1733.98 376.62 1694.49 391 1665 391C1639.34 391 1610.94 382.731 1597.34 359C1591.76 349.275 1590.99 339.709 1589 329z"/>
7
+ <path style="fill:#a3abbd; stroke:none;" d="M2625 155L2625 417L2631 417L2631 155L2625 155z"/>
8
+ <path style="fill:#231f21; stroke:none;" d="M775 156L775 415L810 415L810 309L878 309C898.184 309 917.873 309.497 936 299.127C979.124 274.457 980.686 193.465 938 167.464C917.529 154.994 894.025 156 871 156L775 156M1108 156L1108 194L1140 194L1140 156L1108 156M2368 156L2368 415L2400 415L2400 365L2401.03 344.039L2428 318C2439.53 342.369 2458.38 365.529 2473.33 388C2478.05 395.091 2484.05 409.563 2491.33 413.972C2499.75 419.073 2521.17 415 2531 415C2527.59 404.312 2518.53 394.298 2512.33 385L2474.33 328L2459.67 306C2457.91 303.36 2454.16 299.439 2454.73 296C2455.84 289.334 2467.38 282.463 2472 278.011C2484.38 266.086 2497.41 254.795 2510 243.09C2515.4 238.068 2522.3 233.469 2526 227C2513.95 227 2495.3 223.437 2484 227.603C2475.64 230.688 2468.66 241.788 2462 247.576C2440.54 266.216 2420.1 286.898 2400 307L2400 156L2368 156z"/>
9
+ <path style="fill:#3997d3; stroke:none;" d="M2775 157L2775 191C2762.24 178.828 2741.03 180.023 2734.07 198C2727.4 215.219 2727.12 243.026 2734.68 260C2742.44 277.429 2763.92 276.786 2776 265L2776 272L2798 272L2798 157L2775 157M2894 160L2894 185L2882 185L2882 201L2894 201L2894 250C2894 256.638 2893.05 264.811 2899.11 269.297C2906.36 274.675 2920.44 272 2929 272L2929 256C2924.92 255.963 2920.31 255.946 2918.03 251.891C2915.81 247.947 2917 241.375 2917 237L2917 201L2929 201L2929 185L2917 185L2917 160L2894 160z"/>
10
+ <path style="fill:#231f21; stroke:none;" d="M1381 171L1381 227L1350 227L1350 255L1381 255L1381 363C1381 376.986 1379.62 396.524 1391.04 406.787C1405.24 419.547 1432.47 415 1450 415L1450 387C1440.77 387 1424.51 389.74 1417.23 382.721C1409.63 375.393 1413 357.585 1413 348L1413 255L1450 255L1450 227L1413 227L1413 171L1381 171z"/>
11
+ <path style="fill:#3997d3; stroke:none;" d="M2812 212L2833 212C2833.11 207.516 2833.73 202.599 2838.1 200.179C2845.43 196.121 2854.67 204.315 2850.82 211.985C2844.33 224.911 2821.31 218.998 2812.99 232.015C2805.64 243.524 2807.22 267.364 2822 272.362C2834.02 276.428 2843.45 271.641 2853 265C2854.19 275.547 2869.02 272 2877 272C2873.06 254.799 2874 237.631 2874 220C2874 210.79 2875.47 200.11 2870.03 192.04C2860.96 178.596 2829.14 179.481 2818.47 190.329C2812.5 196.397 2812 203.986 2812 212M2936 212L2957 212C2957.11 207.516 2957.73 202.599 2962.1 200.179C2969.43 196.121 2978.67 204.315 2974.82 211.985C2968.15 225.26 2944.67 218.872 2936.53 233.004C2929.87 244.578 2931.44 267.437 2946 272.362C2957.98 276.411 2967.57 271.741 2977 265C2978.19 275.547 2993.02 272 3001 272C2997.06 254.799 2998 237.631 2998 220C2998 210.79 2999.47 200.11 2994.03 192.04C2984.96 178.596 2953.14 179.481 2942.47 190.329C2936.5 196.397 2936 203.986 2936 212z"/>
12
+ <path style="fill:#ffffff; stroke:none;" d="M810 186L810 279L871 279C884.988 279 899.184 279.697 912 273.015C939.552 258.652 940.868 209.534 914 193.877C899.813 185.609 883.851 186 868 186L810 186M2760.1 201.858C2755.48 203.929 2754.63 209.541 2754 214C2752.48 224.683 2752.06 236.431 2754.68 247C2756.15 252.891 2761.54 257.924 2767.91 255.141C2779.47 250.09 2776.1 218.738 2773.48 209.001C2771.88 203.043 2766.24 199.109 2760.1 201.858z"/>
13
+ <path style="fill:#231f21; stroke:none;" d="M1025 265L1024 265L1024 227L994 227L994 415L1026 415L1026 380C1026 338.363 1016.43 274.642 1068 259.439C1075.86 257.121 1084.83 256.169 1093 256L1093 223C1064.8 223 1033.87 234.855 1025 265M1209 255L1208 255L1208 227L1178 227L1178 415L1209 415L1209 330C1209 312.316 1207.87 292.982 1216.88 277C1230.97 251.992 1274.61 238.238 1294.39 265.001C1304.29 278.403 1302 297.309 1302 313L1302 415L1333 415L1333 308C1333 287.594 1334.79 265.141 1323.53 247C1306.68 219.842 1263.96 217.259 1237 228.616C1225.92 233.283 1212.9 243.239 1209 255M1825 250L1824 250L1824 227L1792 227L1792 486L1824 486L1824 392C1854.91 429.957 1919.04 427.207 1949.54 390C1978.89 354.184 1977.68 286.027 1947.7 251C1925.85 225.471 1891.05 217.43 1859 225.63C1845.81 229.003 1830.22 236.515 1825 250M2156 355C2148.99 355 2131.36 351.782 2125.7 356.028C2122.36 358.536 2121.61 365.416 2119.54 369C2114.77 377.231 2107.77 383.421 2099 387.124C2074.96 397.281 2043.64 388.834 2029.1 367C2021.9 356.186 2020 343.671 2019 331L2159 331C2159 295.853 2152.32 258.956 2122 236.757C2090.64 213.797 2041.46 219.422 2014.04 246.09C1997.08 262.586 1987.07 287.473 1986.04 311C1984.38 348.954 1996.07 392.461 2033 410.216C2078.02 431.857 2153.42 414.248 2156 355M2178 286L2210 286C2211.32 255.361 2243.42 247.61 2269 251.921C2284.5 254.532 2299.72 266.482 2296.67 284C2293.98 299.481 2274.81 302.24 2262 304C2235.04 307.703 2198.55 309.711 2180.53 333C2157.71 362.487 2173.87 407.283 2209 416.105C2231.32 421.71 2257.6 419.828 2278 408.688C2285.81 404.423 2291.81 398.047 2299 393C2299.05 412.918 2314.49 421.223 2333 418.572C2337.14 417.979 2343.38 417.648 2346.4 414.348C2350.67 409.665 2348 395.075 2348 389C2343.64 389.846 2338.3 391.855 2334.05 389.678C2324.37 384.707 2328 361.035 2328 352L2328 283C2328 266.49 2328.01 250.402 2314.96 238.174C2301.3 225.379 2280.88 223 2263 223C2221.57 223 2179 237.354 2178 286M1108 227L1108 415L1140 415L1140 227L1108 227z"/>
14
+ <path style="fill:#ffffff; stroke:none;" d="M2851 230C2846.3 232.467 2840.49 232.987 2836.19 236.133C2820.73 247.436 2843.09 269.239 2850.99 249.996C2852.28 246.861 2852 243.315 2852 240C2852 236.582 2852.33 233.165 2851 230M2975 230C2970.3 232.467 2964.49 232.987 2960.19 236.133C2944.73 247.436 2967.09 269.239 2974.99 249.996C2976.28 246.861 2976 243.315 2976 240C2976 236.582 2976.33 233.165 2975 230M1870 251.439C1796.6 262.903 1810.13 402.039 1890 390.572C1917.68 386.597 1931.54 362.736 1935.13 337C1940.97 295.12 1920.7 243.52 1870 251.439M2020 303L2126 303C2122.4 283.912 2116.06 267.174 2098 257.312C2063.48 238.465 2020.11 263.378 2020 303M0 282L0 573L329 573L329 572C280.793 569.925 235 524.133 235 476L242 475C246.353 493.988 254.534 511.837 271 523.226C314.045 552.999 377.073 521.382 368.866 467C367.645 458.911 364.734 451.022 360.547 444C342.679 414.03 303.218 409.836 273 399.305C259.355 394.549 246.901 387.553 232 389.174C223.316 390.118 215.861 395.764 208 399.127C197.672 403.547 184.217 405.897 173 404.83C159.836 403.578 147.198 400.881 137.004 391.816C129.852 385.455 125.895 375.146 117 370.92C103.041 364.288 84.9619 366.985 70 361.189C44.7503 351.407 23.1725 331.743 10.3086 308C5.82138 299.718 4.33706 290.098 0 282z"/>
15
+ <path style="fill:#a3abbd; stroke:none;" d="M2779 303L2779 418L2802 418C2802 399.597 2800.33 380.307 2802.17 362C2802.84 355.38 2806.38 345.591 2815 347.477C2823.13 349.258 2822 358.721 2822 365L2822 418L2846 418L2846 368C2846 359.125 2846.99 348.239 2843.08 340C2836.23 325.547 2810.59 325.037 2803 339L2802 339L2802 303L2779 303M3146 303L3146 418L3169 418L3169 303L3146 303M3185 303L3185 418L3208 418C3208 404.615 3206.94 395.218 3215 384L3227.25 408L3233.39 417.397L3258 418C3254.07 405.597 3245.45 393.384 3239.14 382C3236.81 377.807 3231.21 370.967 3231.55 366C3232.41 353.51 3250.78 343.409 3254 331C3247.19 331 3236.5 328.954 3230.18 331.603C3222.3 334.911 3212.73 353.495 3209 361L3208 361L3208 303L3185 303M2737 307L2737 331L2726 331L2726 347L2737 347L2737 397C2737 403.566 2736.92 412.13 2743.05 416.258C2751.26 421.781 2763.94 418.187 2773 418L2773 402L2761.74 398.852L2760 384L2760 347L2773 347L2773 331L2760 331L2760 307L2737 307M2941 307L2941 331L2930 331L2930 347L2941 347L2941 397C2941 403.786 2940.63 412 2947.04 416.258C2955.31 421.75 2967.89 418.188 2977 418L2977 402L2965.6 398.852L2964 384L2964 347L2977 347L2977 331L2964 331L2964 307L2941 307M3026 307L3026 331L3015 331L3015 347L3026 347C3026 363.333 3025.92 379.668 3026 396C3026.03 402.051 3026.15 411.142 3031.22 415.347C3039.18 421.942 3052.76 418.397 3062 418L3062 402L3050.94 398.772L3049 383L3049 347L3062 347L3062 331L3049 331L3049 307L3026 307z"/>
16
+ <path style="fill:#ffffff; stroke:none;" d="M2296 319C2275.21 331.089 2249.18 326.376 2227 334.436C2205.58 342.218 2193.24 373.149 2218 386.175C2239.86 397.678 2276.14 389.658 2289.9 369C2296.5 359.077 2297 348.52 2297 337C2297 331.381 2298.19 324.217 2296 319z"/>
17
+ <path style="fill:#a3abbd; stroke:none;" d="M2859 359L2880 359C2880.1 354.297 2880.69 349.613 2885.05 346.862C2892.67 342.06 2901.95 351.115 2897.82 358.956C2894.5 365.266 2885.1 365.901 2879 367.721C2864.53 372.033 2854.79 380.74 2856.17 397C2856.81 404.45 2858.85 411.813 2865.02 416.581C2874.44 423.877 2893.84 420.961 2899 410L2900 410C2900.64 421.69 2915.34 418 2924 418C2920 400.492 2921 382.893 2921 365C2921 356.069 2922.39 345.81 2916.89 338.093C2907.31 324.65 2875.97 325.883 2865.33 337.185C2859.64 343.223 2859.01 351.135 2859 359M3069 359L3089 359C3089.49 353.427 3091.72 346.928 3098 345.667C3105.2 344.222 3110.76 352.748 3107.54 358.956C3103.8 366.148 3091.91 366.52 3085 368.746C3070.29 373.486 3065 384.122 3066.09 399C3067.54 418.716 3097.34 430.595 3108 411L3109 411C3112.11 421.513 3124.85 418 3134 418C3128.66 401.306 3131 382.379 3131 365C3131 356.571 3132.16 346.37 3127.15 339.015C3117.18 324.411 3085.32 325.636 3074.21 338.043C3068.76 344.132 3069 351.349 3069 359M3281 389L3260 389C3260 397.709 3260.06 407.353 3267.1 413.66C3280.93 426.038 3316.03 422.635 3322.87 404C3324.16 400.464 3324 396.705 3324 393C3324 378.222 3316.54 371.616 3303 367.003C3296.74 364.871 3287.43 363.531 3284.18 356.985C3281.24 351.055 3287.98 344.449 3294 345.667C3299.88 346.858 3301.31 352.922 3302 358L3323 358C3322.93 349.183 3321.39 340.161 3313.98 334.419C3299.63 323.285 3268.25 327.7 3262.1 346C3256.82 361.729 3265.35 375.025 3280 380.575C3286.35 382.981 3298.41 385.003 3301.25 392.093C3304.22 399.488 3295.62 405.919 3288.83 403.647C3282.3 401.458 3281.05 395.027 3281 389z"/>
18
+ <path style="fill:#ffffff; stroke:none;" d="M3108 376C3103.3 378.671 3097.36 379.434 3093.05 382.652C3077.61 394.196 3099.96 415.735 3107.99 395.999C3109.27 392.856 3109 389.321 3109 386C3109 382.582 3109.33 379.165 3108 376M2899 377C2894.47 378.237 2889.18 379.484 2885.02 381.684C2864.62 392.47 2893.46 417.289 2898.61 394.999C2899.9 389.374 2899 382.753 2899 377z"/>
19
+ </svg>
@@ -0,0 +1,3 @@
1
+ @import 'bootstrap/scss/bootstrap';
2
+ @import 'bootstrap-icons/font/bootstrap-icons';
3
+ @import 'home/styles.scss'
@@ -0,0 +1,52 @@
1
+ //
2
+ // Global theme styling
3
+ //
4
+
5
+ // Scroll padding for all scroll targets on page used with
6
+ // native CSS smooth scrolling
7
+ //
8
+ // https://caniuse.com/?search=scroll-padding
9
+
10
+ html {
11
+ scroll-padding-top: 4.5rem;
12
+ }
13
+
14
+ body {
15
+ position: relative;
16
+ overflow-x: hidden;
17
+ }
18
+
19
+ // Adjust the line height of paragraphs
20
+
21
+ p {
22
+ line-height: $line-height-lg;
23
+ }
24
+
25
+ // Spacing and heading styling for page sections
26
+
27
+ .page-section {
28
+ padding: 6rem 0;
29
+
30
+ h2.section-heading {
31
+ font-size: 2.5rem;
32
+ margin-top: 0;
33
+ margin-bottom: 1rem;
34
+ }
35
+
36
+ h3.section-subheading {
37
+ font-size: 1rem;
38
+ font-weight: 400;
39
+ font-style: italic;
40
+ font-family: $subheadings-font-family;
41
+ margin-bottom: 4rem;
42
+ }
43
+ }
44
+
45
+ // Increase the padding on sections when screen size is greater
46
+ // than the medium breakpoint (set by Bootstrap)
47
+
48
+ @include media-breakpoint-up(md) {
49
+ section {
50
+ padding: 9rem 0;
51
+ }
52
+ }
@@ -0,0 +1,8 @@
1
+ //
2
+ // Variables
3
+ //
4
+
5
+ // Import variables from src/scss/variables
6
+
7
+ @import "./variables/colors.scss";
8
+ @import "./variables/typography.scss";
@@ -0,0 +1,24 @@
1
+ //
2
+ // Buttons
3
+ //
4
+
5
+ // Create a new xl button variant
6
+
7
+ .btn-xl {
8
+ padding: 1.25rem 2.5rem;
9
+ font-family: $headings-font-family;
10
+ font-size: 1.125rem;
11
+ font-weight: $headings-font-weight;
12
+ }
13
+
14
+ // Create a new social button variant
15
+
16
+ .btn-social {
17
+ height: 2.5rem;
18
+ width: 2.5rem;
19
+ display: inline-flex;
20
+ align-items: center;
21
+ justify-content: center;
22
+ padding: 0;
23
+ border-radius: 100%;
24
+ }