saaskit 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.travis.yml +7 -0
  4. data/CODE_OF_CONDUCT.md +74 -0
  5. data/Gemfile +4 -0
  6. data/Gemfile.lock +22 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +81 -0
  9. data/Rakefile +10 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/lib/generators/saaskit/install/install_generator.rb +207 -0
  13. data/lib/generators/saaskit/install/templates/README +30 -0
  14. data/lib/generators/saaskit/install/templates/app/adapters/mailchimp/base_adapter.rb +51 -0
  15. data/lib/generators/saaskit/install/templates/app/controllers/application_controller.rb +3 -0
  16. data/lib/generators/saaskit/install/templates/app/controllers/pages_controller.rb +30 -0
  17. data/lib/generators/saaskit/install/templates/app/forms/newsletter_form.rb +17 -0
  18. data/lib/generators/saaskit/install/templates/app/helpers/application_helper.rb +10 -0
  19. data/lib/generators/saaskit/install/templates/app/helpers/meta_tags_helper.rb +21 -0
  20. data/lib/generators/saaskit/install/templates/app/javascript/controllers/aos_controller.js +12 -0
  21. data/lib/generators/saaskit/install/templates/app/javascript/controllers/index.js +6 -0
  22. data/lib/generators/saaskit/install/templates/app/javascript/controllers/notice_controller.js +14 -0
  23. data/lib/generators/saaskit/install/templates/app/javascript/controllers/noty_controller.js +10 -0
  24. data/lib/generators/saaskit/install/templates/app/javascript/controllers/reveal_controller.js +43 -0
  25. data/lib/generators/saaskit/install/templates/app/javascript/controllers/smooth_scroll_controller.js +11 -0
  26. data/lib/generators/saaskit/install/templates/app/javascript/controllers/typed_controller.js +17 -0
  27. data/lib/generators/saaskit/install/templates/app/javascript/images/address-book-2.svg +8 -0
  28. data/lib/generators/saaskit/install/templates/app/javascript/images/chart-bar-1.svg +10 -0
  29. data/lib/generators/saaskit/install/templates/app/javascript/images/cloud-upload.svg +8 -0
  30. data/lib/generators/saaskit/install/templates/app/javascript/images/credit-card.svg +9 -0
  31. data/lib/generators/saaskit/install/templates/app/javascript/images/display-1.svg +8 -0
  32. data/lib/generators/saaskit/install/templates/app/javascript/images/facebook.svg +1 -0
  33. data/lib/generators/saaskit/install/templates/app/javascript/images/file.svg +9 -0
  34. data/lib/generators/saaskit/install/templates/app/javascript/images/github.svg +1 -0
  35. data/lib/generators/saaskit/install/templates/app/javascript/images/group.svg +8 -0
  36. data/lib/generators/saaskit/install/templates/app/javascript/images/layout-left-panel-1.svg +8 -0
  37. data/lib/generators/saaskit/install/templates/app/javascript/images/layout-top-panel-6.svg +8 -0
  38. data/lib/generators/saaskit/install/templates/app/javascript/images/logo_color_horizontal.svg +1 -0
  39. data/lib/generators/saaskit/install/templates/app/javascript/images/logo_color_stacked.svg +1 -0
  40. data/lib/generators/saaskit/install/templates/app/javascript/images/logo_color_symbol.svg +1 -0
  41. data/lib/generators/saaskit/install/templates/app/javascript/images/logo_white_horizontal.svg +1 -0
  42. data/lib/generators/saaskit/install/templates/app/javascript/images/logo_white_stacked.svg +1 -0
  43. data/lib/generators/saaskit/install/templates/app/javascript/images/logo_white_symbol.svg +1 -0
  44. data/lib/generators/saaskit/install/templates/app/javascript/images/mail-opened.svg +8 -0
  45. data/lib/generators/saaskit/install/templates/app/javascript/images/notifications-1.svg +7 -0
  46. data/lib/generators/saaskit/install/templates/app/javascript/images/outlet.svg +8 -0
  47. data/lib/generators/saaskit/install/templates/app/javascript/images/pablo-done.png +0 -0
  48. data/lib/generators/saaskit/install/templates/app/javascript/images/paypal.svg +9 -0
  49. data/lib/generators/saaskit/install/templates/app/javascript/images/rails.svg +7 -0
  50. data/lib/generators/saaskit/install/templates/app/javascript/images/repeat.svg +8 -0
  51. data/lib/generators/saaskit/install/templates/app/javascript/images/right-circle.svg +8 -0
  52. data/lib/generators/saaskit/install/templates/app/javascript/images/sale-2.svg +10 -0
  53. data/lib/generators/saaskit/install/templates/app/javascript/images/selected-file.svg +8 -0
  54. data/lib/generators/saaskit/install/templates/app/javascript/images/sending-mail.svg +8 -0
  55. data/lib/generators/saaskit/install/templates/app/javascript/images/shield-check.svg +8 -0
  56. data/lib/generators/saaskit/install/templates/app/javascript/images/shield-protected.svg +8 -0
  57. data/lib/generators/saaskit/install/templates/app/javascript/images/stimulus.svg +1 -0
  58. data/lib/generators/saaskit/install/templates/app/javascript/images/stripe.svg +6 -0
  59. data/lib/generators/saaskit/install/templates/app/javascript/images/tailwind.svg +12 -0
  60. data/lib/generators/saaskit/install/templates/app/javascript/images/tgav_logo_white_symbol.svg +1 -0
  61. data/lib/generators/saaskit/install/templates/app/javascript/images/user.svg +8 -0
  62. data/lib/generators/saaskit/install/templates/app/javascript/images/webpack.svg +8 -0
  63. data/lib/generators/saaskit/install/templates/app/javascript/stylesheets/application.scss +3 -0
  64. data/lib/generators/saaskit/install/templates/app/javascript/stylesheets/tailwind.config.js +542 -0
  65. data/lib/generators/saaskit/install/templates/app/models/concerns/coming_soon_pending_subscribable.rb +31 -0
  66. data/lib/generators/saaskit/install/templates/app/views/layouts/application.html.erb +7 -0
  67. data/lib/generators/saaskit/install/templates/app/views/layouts/land.html.erb +24 -0
  68. data/lib/generators/saaskit/install/templates/app/views/pages/_errors.html.erb +14 -0
  69. data/lib/generators/saaskit/install/templates/app/views/pages/home.html.erb +472 -0
  70. data/lib/generators/saaskit/install/templates/app/views/pages/subscribe.js.erb +24 -0
  71. data/lib/generators/saaskit/install/templates/app/views/shared/_footer.html.erb +23 -0
  72. data/lib/generators/saaskit/install/templates/app/views/shared/_head.html.erb +9 -0
  73. data/lib/generators/saaskit/install/templates/app/views/shared/_navbar.html.erb +76 -0
  74. data/lib/generators/saaskit/install/templates/app/views/shared/_notices.html.erb +8 -0
  75. data/lib/generators/saaskit/install/templates/config/credentials.yml.sample +8 -0
  76. data/lib/generators/saaskit/install/templates/config/initializers/meta_tags.rb +40 -0
  77. data/lib/generators/saaskit/install/templates/config/webpack/plugins/purgecss-webpack-plugin.js +21 -0
  78. data/lib/saaskit.rb +6 -0
  79. data/lib/saaskit/version.rb +3 -0
  80. data/saaskit.gemspec +33 -0
  81. data/template.rb +6 -0
  82. metadata +169 -0
@@ -0,0 +1,30 @@
1
+ =======================================================================================================
2
+
3
+ ____ ____ __ __ __
4
+ /\ _`\ /\ _`\ /\ \/\ \ __/\ \__
5
+ \ \,\L\_\ __ __ \ \,\L\_\ \ \/'/'/\_\ \ ,_\
6
+ \/_\__ \ /'__`\ /'__`\\/_\__ \\ \ , < \/\ \ \ \/
7
+ /\ \L\ \/\ \L\.\_/\ \L\.\_/\ \L\ \ \ \\`\\ \ \ \ \_
8
+ \ `\____\ \__/.\_\ \__/.\_\ `\____\ \_\ \_\ \_\ \__\
9
+ \/_____/\/__/\/_/\/__/\/_/\/_____/\/_/\/_/\/_/\/__/
10
+
11
+ Congraduration 🎉, all done 👏.
12
+
13
+ 1. Before you start rails server, Please config your secret credential and use the sample template located in
14
+ `config/credentials.yml.sample` as the starting point.
15
+
16
+ For development environment:
17
+ EDITOR=vim rails credentials:edit --environment development
18
+
19
+ For test environment:
20
+ EDITOR=vim rails credentials:edit --environment test
21
+
22
+ For production environment:
23
+ EDITOR=vim rails credentials:edit
24
+
25
+ 2. To start the app:
26
+ cd your_app
27
+ bin/rails server
28
+ Open browser with http://localhost:3000
29
+
30
+ =======================================================================================================
@@ -0,0 +1,51 @@
1
+ module Mailchimp
2
+ class BaseAdapter
3
+ MAILCHIMP_API_KEY = Rails.application.credentials[:mailchimp][:api_key]
4
+ MAILCHIMP_AUDIENCE_ID = Rails.application.credentials[:mailchimp][:audience_id]
5
+
6
+ def initialize
7
+ @client = ::Gibbon::Request.new(api_key: MAILCHIMP_API_KEY)
8
+ @client.timeout = 30
9
+ @client.open_timeout = 30
10
+ @client.symbolize_keys = true
11
+ @client.debug = false
12
+ end
13
+
14
+ def pending_subscribe(options)
15
+ options = build_options(options)
16
+
17
+ options = {
18
+ list_id: MAILCHIMP_AUDIENCE_ID,
19
+ status: "pending",
20
+ }.merge!(options)
21
+
22
+ body = {
23
+ 'email_address': options[:email],
24
+ 'status': options[:status],
25
+ }
26
+
27
+ body[:merge_fields] = {} if options.key?(:first_name) || options.key?(:last_name)
28
+ body[:merge_fields][:FNAME] = options[:first_name] if options.key?(:first_name)
29
+ body[:merge_fields][:LNAME] = options[:last_name] if options.key?(:last_name)
30
+
31
+ email_hash = Digest::MD5.hexdigest(options[:email].downcase)
32
+
33
+ begin
34
+ @client.lists(options[:list_id]).members(email_hash).upsert(body: body)
35
+ rescue Gibbon::MailChimpError => exception
36
+ OpenStruct.new(success?: false, error: "Subscribe failed")
37
+ else
38
+ OpenStruct.new(success?: true, error: nil)
39
+ end
40
+ end
41
+
42
+ def build_options(options)
43
+ if options.key?(:user_id)
44
+ user = User.find(options[:user_id])
45
+ {email: user.email, first_name: user.first_name, last_name: user.last_name}
46
+ elsif options.key?(:email)
47
+ {email: options[:email]}
48
+ end
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ add_flash_types :success
3
+ end
@@ -0,0 +1,30 @@
1
+ class PagesController < ApplicationController
2
+ layout "land"
3
+
4
+ # GET /
5
+ def home
6
+ @newsletter_form = NewsletterForm.new
7
+ end
8
+
9
+ # POST /subscribe
10
+ def subscribe
11
+ @newsletter_form = NewsletterForm.new(newsletter_form_params)
12
+
13
+ respond_to do |format|
14
+ if @newsletter_form.save
15
+ format.html { redirect_to root_url, success: "Successfully subscribed" }
16
+ format.js { flash.now[:notice] = "Successfully subscribed" }
17
+ else
18
+ format.html { render :home }
19
+ format.js
20
+ end
21
+ end
22
+ end
23
+
24
+ private
25
+
26
+ # Never trust parameters from the scary internet, only allow the white list through.
27
+ def newsletter_form_params
28
+ params.require(:newsletter_form).permit(:email, :suppressed)
29
+ end
30
+ end
@@ -0,0 +1,17 @@
1
+ class NewsletterForm
2
+ include ActiveModel::Model
3
+ include ActiveModel::Validations
4
+ include ComingSoonPendingSubscribable
5
+
6
+ attr_accessor :email
7
+
8
+ validates :email, format: {
9
+ with: /\A[^@\s]+@[^@\s]+\z/,
10
+ message: "Email is invalid",
11
+ }
12
+
13
+ def save
14
+ return false unless valid?
15
+ true
16
+ end
17
+ end
@@ -0,0 +1,10 @@
1
+ module ApplicationHelper
2
+ def tailwindcss_class_for(flash_type)
3
+ {
4
+ notice: "info",
5
+ error: "danger",
6
+ alert: "warning",
7
+ success: "success",
8
+ }.stringify_keys[flash_type.to_s] || flash_type.to_s
9
+ end
10
+ end
@@ -0,0 +1,21 @@
1
+ module MetaTagsHelper
2
+ def default_meta_tags
3
+ {
4
+ site: "SaaSKit",
5
+ reverse: true,
6
+ charset: "utf-8",
7
+ canonical: request.original_url,
8
+ separator: "|",
9
+ viewport: "width=device-width, initial-scale=1, shrink-to-fit=no",
10
+ og: {
11
+ site_name: "SaaSKit",
12
+ type: "website",
13
+ url: request.original_url,
14
+ },
15
+ twitter: {
16
+ card: "summary",
17
+ site: "@saaskitapp",
18
+ },
19
+ }
20
+ end
21
+ end
@@ -0,0 +1,12 @@
1
+ import {
2
+ Controller
3
+ } from "stimulus"
4
+
5
+ import AOS from 'aos'
6
+ import 'aos/dist/aos.css'
7
+
8
+ export default class extends Controller {
9
+ connect() {
10
+ AOS.init()
11
+ }
12
+ }
@@ -0,0 +1,6 @@
1
+ import { Application } from "stimulus"
2
+ import { definitionsFromContext } from "stimulus/webpack-helpers"
3
+
4
+ const application = Application.start()
5
+ const context = require.context("controllers", true, /_controller\.js$/)
6
+ application.load(definitionsFromContext(context))
@@ -0,0 +1,14 @@
1
+ import {
2
+ Controller
3
+ } from "stimulus"
4
+
5
+ export default class extends Controller {
6
+ static targets = ["message"]
7
+
8
+ close(event) {
9
+ const notice = document.getElementById("notice")
10
+ while (notice.firstChild) {
11
+ notice.removeChild(notice.firstChild)
12
+ }
13
+ }
14
+ }
@@ -0,0 +1,10 @@
1
+ import {
2
+ Controller
3
+ } from "stimulus"
4
+
5
+ window.Noty = require('noty');
6
+ import 'noty/lib/noty.css'
7
+ import 'noty/lib/themes/sunset.css'
8
+
9
+ export default class extends Controller {
10
+ }
@@ -0,0 +1,43 @@
1
+ import {
2
+ Controller
3
+ } from "stimulus"
4
+
5
+ export default class extends Controller {
6
+ static targets = ["content"]
7
+
8
+ show(event) {
9
+ event.preventDefault()
10
+ event.stopImmediatePropagation()
11
+
12
+ if (this.open) {
13
+ event.currentTarget.textContent = "Show more 👇"
14
+
15
+ this.contentTarget.scrollIntoView()
16
+
17
+ this.contentTarget.style.height = null
18
+
19
+ this.contentTarget.classList.remove("h-auto", "after:h-0")
20
+ this.contentTarget.classList.add("h-120", "after:h-120")
21
+
22
+ this.open = false
23
+ } else {
24
+ event.currentTarget.textContent = "Show less ☝️"
25
+
26
+ this.contentTarget.style.height = this.contentTarget.scrollHeight + "px"
27
+
28
+ this.contentTarget.classList.remove("h-120", "after:h-120")
29
+ this.contentTarget.classList.add("h-auto", "after:h-0")
30
+
31
+ this.open = true
32
+ }
33
+ }
34
+
35
+ get open() {
36
+ const openBool = (this.data.get("open") == "true")
37
+ return openBool
38
+ }
39
+
40
+ set open(value) {
41
+ this.data.set("open", value)
42
+ }
43
+ }
@@ -0,0 +1,11 @@
1
+ import {
2
+ Controller
3
+ } from "stimulus"
4
+
5
+ import SmoothScroll from 'smooth-scroll'
6
+
7
+ export default class extends Controller {
8
+ connect() {
9
+ var scroll = new SmoothScroll('a[href*="#"]')
10
+ }
11
+ }
@@ -0,0 +1,17 @@
1
+ import {
2
+ Controller
3
+ } from "stimulus"
4
+
5
+ import Typed from 'typed.js'
6
+
7
+ export default class extends Controller {
8
+ connect() {
9
+ var options = {
10
+ stringsElement: '#typed-strings',
11
+ typeSpeed: 40,
12
+ loop: true
13
+ }
14
+
15
+ var typed = new Typed("#typed", options);
16
+ }
17
+ }
@@ -0,0 +1,8 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <title>Icon For Adress-book#2</title>
3
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <rect opacity="0" x="0" y="0" width="24" height="24"></rect>
5
+ <path d="M18,2 L20,2 C21.6568542,2 23,3.34314575 23,5 L23,19 C23,20.6568542 21.6568542,22 20,22 L18,22 L18,2 Z" fill="#56B4FC"></path>
6
+ <path d="M5,2 L17,2 C18.6568542,2 20,3.34314575 20,5 L20,19 C20,20.6568542 18.6568542,22 17,22 L5,22 C4.44771525,22 4,21.5522847 4,21 L4,3 C4,2.44771525 4.44771525,2 5,2 Z M12,11 C13.1045695,11 14,10.1045695 14,9 C14,7.8954305 13.1045695,7 12,7 C10.8954305,7 10,7.8954305 10,9 C10,10.1045695 10.8954305,11 12,11 Z M7.00036205,16.4995035 C6.98863236,16.6619875 7.26484009,17 7.4041679,17 C11.463736,17 14.5228466,17 16.5815,17 C16.9988413,17 17.0053266,16.6221713 16.9988413,16.5 C16.8360465,13.4332455 14.6506758,12 11.9907452,12 C9.36772908,12 7.21569918,13.5165724 7.00036205,16.4995035 Z" fill="#1552f0"></path>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <title>Icon For Chart-bar#1</title>
3
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <rect opacity="0" x="0" y="0" width="24" height="24"></rect>
5
+ <rect fill="#56B4FC" x="12" y="4" width="3" height="13" rx="1.5"></rect>
6
+ <rect fill="#56B4FC" x="7" y="9" width="3" height="8" rx="1.5"></rect>
7
+ <path d="M5,19 L20,19 C20.5522847,19 21,19.4477153 21,20 C21,20.5522847 20.5522847,21 20,21 L4,21 C3.44771525,21 3,20.5522847 3,20 L3,4 C3,3.44771525 3.44771525,3 4,3 C4.55228475,3 5,3.44771525 5,4 L5,19 Z" fill="#1552f0" fill-rule="nonzero"></path>
8
+ <rect fill="#56B4FC" x="17" y="11" width="3" height="6" rx="1.5"></rect>
9
+ </g>
10
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <title>Icon For Cloud-upload</title>
3
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <polygon points="0 0 24 0 24 24 0 24" opacity="0"></polygon>
5
+ <path d="M5.74714567,13.0425758 C4.09410362,11.9740356 3,10.1147886 3,8 C3,4.6862915 5.6862915,2 9,2 C11.7957591,2 14.1449096,3.91215918 14.8109738,6.5 L17.25,6.5 C19.3210678,6.5 21,8.17893219 21,10.25 C21,12.3210678 19.3210678,14 17.25,14 L8.25,14 C7.28817895,14 6.41093178,13.6378962 5.74714567,13.0425758 Z" fill="#56B4FC"></path>
6
+ <path d="M11.1288761,15.7336977 L11.1288761,17.6901712 L9.12120481,17.6901712 C8.84506244,17.6901712 8.62120481,17.9140288 8.62120481,18.1901712 L8.62120481,19.2134699 C8.62120481,19.4896123 8.84506244,19.7134699 9.12120481,19.7134699 L11.1288761,19.7134699 L11.1288761,21.6699434 C11.1288761,21.9460858 11.3527337,22.1699434 11.6288761,22.1699434 C11.7471877,22.1699434 11.8616664,22.1279896 11.951961,22.0515402 L15.4576222,19.0834174 C15.6683723,18.9049825 15.6945689,18.5894857 15.5161341,18.3787356 C15.4982803,18.3576485 15.4787093,18.3380775 15.4576222,18.3202237 L11.951961,15.3521009 C11.7412109,15.173666 11.4257142,15.1998627 11.2472793,15.4106128 C11.1708299,15.5009075 11.1288761,15.6153861 11.1288761,15.7336977 Z" fill="#1552f0" fill-rule="nonzero" transform="translate(11.959697, 18.661508) rotate(-90.000000) translate(-11.959697, -18.661508) "></path>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <title>Icon For Credit-card</title>
3
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <rect opacity="0" x="0" y="0" width="24" height="24"></rect>
5
+ <rect fill="#56B4FC" x="2" y="5" width="20" height="14" rx="2"></rect>
6
+ <rect fill="#1552f0" x="2" y="8" width="20" height="3"></rect>
7
+ <rect fill="#56B4FC" x="16" y="14" width="4" height="2" rx="1"></rect>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <title>Icon For Display#1</title>
3
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <rect opacity="0" x="0" y="0" width="24" height="24"></rect>
5
+ <path d="M11,20 L11,17 C11,16.4477153 11.4477153,16 12,16 C12.5522847,16 13,16.4477153 13,17 L13,20 L15.5,20 C15.7761424,20 16,20.2238576 16,20.5 C16,20.7761424 15.7761424,21 15.5,21 L8.5,21 C8.22385763,21 8,20.7761424 8,20.5 C8,20.2238576 8.22385763,20 8.5,20 L11,20 Z" fill="#56B4FC"></path>
6
+ <path d="M3,5 L21,5 C21.5522847,5 22,5.44771525 22,6 L22,16 C22,16.5522847 21.5522847,17 21,17 L3,17 C2.44771525,17 2,16.5522847 2,16 L2,6 C2,5.44771525 2.44771525,5 3,5 Z M4.5,8 C4.22385763,8 4,8.22385763 4,8.5 C4,8.77614237 4.22385763,9 4.5,9 L13.5,9 C13.7761424,9 14,8.77614237 14,8.5 C14,8.22385763 13.7761424,8 13.5,8 L4.5,8 Z M4.5,10 C4.22385763,10 4,10.2238576 4,10.5 C4,10.7761424 4.22385763,11 4.5,11 L7.5,11 C7.77614237,11 8,10.7761424 8,10.5 C8,10.2238576 7.77614237,10 7.5,10 L4.5,10 Z" fill="#1552f0"></path>
7
+ </g>
8
+ </svg>
@@ -0,0 +1 @@
1
+ <svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Facebook icon</title><path fill="#1552f0" d="M22.676 0H1.324C.593 0 0 .593 0 1.324v21.352C0 23.408.593 24 1.324 24h11.494v-9.294H9.689v-3.621h3.129V8.41c0-3.099 1.894-4.785 4.659-4.785 1.325 0 2.464.097 2.796.141v3.24h-1.921c-1.5 0-1.792.721-1.792 1.771v2.311h3.584l-.465 3.63H16.56V24h6.115c.733 0 1.325-.592 1.325-1.324V1.324C24 .593 23.408 0 22.676 0"/></svg>
@@ -0,0 +1,9 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <title>Icon For File</title>
3
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <polygon points="0 0 24 0 24 24 0 24" opacity="0"></polygon>
5
+ <path d="M5.85714286,2 L13.7364114,2 C14.0910962,2 14.4343066,2.12568431 14.7051108,2.35473959 L19.4686994,6.3839416 C19.8056532,6.66894833 20,7.08787823 20,7.52920201 L20,20.0833333 C20,21.8738751 19.9795521,22 18.1428571,22 L5.85714286,22 C4.02044787,22 4,21.8738751 4,20.0833333 L4,3.91666667 C4,2.12612489 4.02044787,2 5.85714286,2 Z" fill="#56B4FC" fill-rule="nonzero"></path>
6
+ <rect fill="#1552f0" x="6" y="11" width="9" height="2" rx="1"></rect>
7
+ <rect fill="#1552f0" x="6" y="15" width="5" height="2" rx="1"></rect>
8
+ </g>
9
+ </svg>
@@ -0,0 +1 @@
1
+ <svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub icon</title><path fill="#1552f0" d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <title>Icon For Group</title>
3
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <polygon points="0 0 24 0 24 24 0 24" opacity="0"></polygon>
5
+ <path d="M18,14 C16.3431458,14 15,12.6568542 15,11 C15,9.34314575 16.3431458,8 18,8 C19.6568542,8 21,9.34314575 21,11 C21,12.6568542 19.6568542,14 18,14 Z M9,11 C6.790861,11 5,9.209139 5,7 C5,4.790861 6.790861,3 9,3 C11.209139,3 13,4.790861 13,7 C13,9.209139 11.209139,11 9,11 Z" fill="#56B4FC" fill-rule="nonzero"></path>
6
+ <path d="M17.6011961,15.0006174 C21.0077043,15.0378534 23.7891749,16.7601418 23.9984937,20.4 C24.0069246,20.5466056 23.9984937,21 23.4559499,21 L19.6,21 C19.6,18.7490654 18.8562935,16.6718327 17.6011961,15.0006174 Z M0.00065168429,20.1992055 C0.388258525,15.4265159 4.26191235,13 8.98334134,13 C13.7712164,13 17.7048837,15.2931929 17.9979143,20.2 C18.0095879,20.3954741 17.9979143,21 17.2466999,21 C13.541124,21 8.03472472,21 0.727502227,21 C0.476712155,21 -0.0204617505,20.45918 0.00065168429,20.1992055 Z" fill="#1552f0" fill-rule="nonzero"></path>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <title>Icon For Layout-left-panel-1</title>
3
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <rect opacity="0" x="0" y="0" width="24" height="24"></rect>
5
+ <rect fill="#1552f0" x="9" y="5" width="13" height="14" rx="1.5"></rect>
6
+ <rect fill="#56B4FC" x="2" y="5" width="5" height="14" rx="1"></rect>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <title>Icon For Layout-top-panel-6</title>
3
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <rect opacity="0" x="0" y="0" width="24" height="24"></rect>
5
+ <rect fill="#1552f0" x="2" y="5" width="19" height="4" rx="1"></rect>
6
+ <rect fill="#56B4FC" x="2" y="11" width="19" height="10" rx="1"></rect>
7
+ </g>
8
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 292.13 60.17"><defs><style>.cls-1{fill:#bfe9ff;}.cls-2{fill:#56b4fc;}.cls-3{fill:#2552f0;}.cls-4{fill:#1a202c;}</style></defs><title>Asset 11</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M65,44.48l-9-3.36-16.19,6.1a18,18,0,0,1-6.59,1.19,19.25,19.25,0,0,1-6.59-1.19l-16.19-6.1-9,3.36A2.36,2.36,0,0,0,0,46.8a2.45,2.45,0,0,0,1.54,2.31L28.45,59.27a13.54,13.54,0,0,0,9.67,0L65,49.11a2.34,2.34,0,0,0,1.54-2.31A2.47,2.47,0,0,0,65,44.48Z"/><path class="cls-2" d="M65,27.74l-9-3.37-16.19,6.1a18,18,0,0,1-6.59,1.19,19.25,19.25,0,0,1-6.59-1.19l-16.19-6.1-9,3.37A2.34,2.34,0,0,0,0,30.05a2.45,2.45,0,0,0,1.54,2.31L28.45,42.52a13.54,13.54,0,0,0,9.67,0L65,32.36a2.34,2.34,0,0,0,1.54-2.31A2.45,2.45,0,0,0,65,27.74Z"/><path class="cls-3" d="M1.54,15.68,28.45,25.84a13.54,13.54,0,0,0,9.67,0L65,15.68a2.39,2.39,0,0,0,1.54-2.31A2.45,2.45,0,0,0,65,11.06L38.12.89a13.54,13.54,0,0,0-9.67,0L1.54,11.06A2.34,2.34,0,0,0,0,13.37,2.51,2.51,0,0,0,1.54,15.68Z"/><path class="cls-4" d="M87.13,39.56c.41,3.49,4.05,5.78,8.75,5.78s8-2.26,8-5.37c0-2.76-2-4.29-7.14-5.44l-5.52-1.2c-7.81-1.68-11.66-5.64-11.66-11.84,0-7.81,6.76-13,16.22-13,9.87,0,16.06,5.09,16.21,12.75h-8.31c-.3-3.58-3.44-5.75-7.88-5.75s-7.31,2.08-7.31,5.23c0,2.61,2.06,4.08,6.93,5.2L100.52,27c8.49,1.82,12.2,5.47,12.2,11.93,0,8.23-6.67,13.43-17.19,13.43-10.19,0-16.69-4.85-17-12.81Z"/><path class="cls-4" d="M116.21,42.58c0-5.73,4.41-9,12.25-9.52l7.93-.47V30.51c0-2.94-2-4.64-5.28-4.64s-5.23,1.58-5.64,3.9h-7.85c.32-6.11,5.52-10.31,13.87-10.31,8.08,0,13.34,4.17,13.34,10.52V51.63h-8.29V46.81h-.18c-1.76,3.35-5.67,5.32-9.6,5.32C120.77,52.13,116.21,48.25,116.21,42.58Zm20.18-2.49v-2.3l-6.64.42c-3.2.23-5,1.67-5,3.9s1.94,3.82,4.85,3.82C133.31,45.93,136.39,43.49,136.39,40.09Z"/><path class="cls-4" d="M149.14,42.58c0-5.73,4.41-9,12.25-9.52l7.94-.47V30.51c0-2.94-2.06-4.64-5.29-4.64s-5.23,1.58-5.64,3.9h-7.85c.33-6.11,5.53-10.31,13.87-10.31,8.08,0,13.34,4.17,13.34,10.52V51.63h-8.29V46.81h-.17c-1.77,3.35-5.67,5.32-9.61,5.32C153.7,52.13,149.14,48.25,149.14,42.58Zm20.19-2.49v-2.3l-6.64.42c-3.2.23-5,1.67-5,3.9s1.94,3.82,4.85,3.82C166.24,45.93,169.33,43.49,169.33,40.09Z"/><path class="cls-4" d="M191,39.56c.41,3.49,4.05,5.78,8.75,5.78s8-2.26,8-5.37c0-2.76-2-4.29-7.13-5.44L195,33.33c-7.81-1.68-11.66-5.64-11.66-11.84,0-7.81,6.76-13,16.22-13,9.87,0,16.07,5.09,16.21,12.75h-8.31c-.3-3.58-3.44-5.75-7.87-5.75s-7.32,2.08-7.32,5.23c0,2.61,2.06,4.08,6.93,5.2L204.37,27c8.49,1.82,12.2,5.47,12.2,11.93,0,8.23-6.67,13.43-17.19,13.43-10.19,0-16.69-4.85-16.95-12.81Z"/><path class="cls-4" d="M222,51.63V9.24h8.87V28.57h.27L247.06,9.24h9.87L241.24,28,258,51.63H247.41L234.84,33.92l-4,4.76v13Z"/><path class="cls-4" d="M260.87,12.24a4.58,4.58,0,1,1,4.58,4.43A4.45,4.45,0,0,1,260.87,12.24Zm.29,7.9h8.58V51.63h-8.58Z"/><path class="cls-4" d="M286.31,12.88v7.26h5.82V26.6h-5.82V41.67c0,2.41,1.17,3.56,3.7,3.56a13.71,13.71,0,0,0,2.09-.15V51.4a20.17,20.17,0,0,1-4.09.35c-7.4,0-10.28-2.47-10.28-8.61V26.6h-4.44V20.14h4.44V12.88Z"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 116.93 96.57"><defs><style>.cls-1{fill:#bfe9ff;}.cls-2{fill:#56b4fc;}.cls-3{fill:#2552f0;}.cls-4{fill:#1a202c;}</style></defs><title>Asset 13</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M90.21,44.48l-9-3.36-16.19,6.1a17.93,17.93,0,0,1-6.59,1.19,19.19,19.19,0,0,1-6.58-1.19l-16.19-6.1-9,3.36a2.36,2.36,0,0,0-1.55,2.32,2.45,2.45,0,0,0,1.55,2.31L53.63,59.27a13.54,13.54,0,0,0,9.67,0L90.21,49.11a2.34,2.34,0,0,0,1.54-2.31A2.47,2.47,0,0,0,90.21,44.48Z"/><path class="cls-2" d="M90.21,27.74l-9-3.37-16.19,6.1a17.93,17.93,0,0,1-6.59,1.19,19.19,19.19,0,0,1-6.58-1.19l-16.19-6.1-9,3.37a2.34,2.34,0,0,0-1.55,2.31,2.45,2.45,0,0,0,1.55,2.31L53.63,42.52a13.54,13.54,0,0,0,9.67,0L90.21,32.36a2.34,2.34,0,0,0,1.54-2.31A2.45,2.45,0,0,0,90.21,27.74Z"/><path class="cls-3" d="M26.72,15.68,53.63,25.84a13.54,13.54,0,0,0,9.67,0L90.21,15.68a2.39,2.39,0,0,0,1.54-2.31,2.45,2.45,0,0,0-1.54-2.31L63.3.89a13.54,13.54,0,0,0-9.67,0L26.72,11.06a2.34,2.34,0,0,0-1.55,2.31A2.51,2.51,0,0,0,26.72,15.68Z"/><path class="cls-4" d="M4.68,89.55c.23,1.92,2.22,3.17,4.79,3.17s4.36-1.24,4.36-2.94c0-1.51-1.11-2.35-3.91-3l-3-.66C2.62,85.23.51,83.06.51,79.66c0-4.28,3.7-7.11,8.88-7.11,5.41,0,8.8,2.78,8.88,7H13.72c-.16-2-1.88-3.15-4.31-3.15s-4,1.14-4,2.86c0,1.44,1.13,2.24,3.8,2.85l2.82.6c4.64,1,6.67,3,6.67,6.53,0,4.5-3.65,7.35-9.41,7.35-5.58,0-9.14-2.66-9.28-7Z"/><path class="cls-4" d="M20.61,91.21c0-3.14,2.41-4.95,6.7-5.21l4.35-.26V84.6c0-1.61-1.13-2.54-2.9-2.54s-2.86.87-3.09,2.14H21.38c.17-3.35,3-5.65,7.59-5.65s7.3,2.29,7.3,5.76V96.17H31.74V93.53h-.1a5.93,5.93,0,0,1-5.26,2.91C23.1,96.44,20.61,94.32,20.61,91.21Zm11.05-1.37V88.59L28,88.81c-1.75.13-2.75.92-2.75,2.14s1.06,2.1,2.65,2.1C30,93.05,31.66,91.71,31.66,89.84Z"/><path class="cls-4" d="M38.64,91.21c0-3.14,2.41-4.95,6.71-5.21l4.34-.26V84.6c0-1.61-1.13-2.54-2.9-2.54s-2.86.87-3.08,2.14h-4.3c.18-3.35,3-5.65,7.59-5.65s7.31,2.29,7.31,5.76V96.17H49.77V93.53h-.1a5.93,5.93,0,0,1-5.26,2.91C41.13,96.44,38.64,94.32,38.64,91.21Zm11-1.37V88.59l-3.64.22c-1.75.13-2.75.92-2.75,2.14s1.06,2.1,2.66,2.1C48,93.05,49.69,91.71,49.69,89.84Z"/><path class="cls-4" d="M61.54,89.55c.23,1.92,2.22,3.17,4.8,3.17s4.36-1.24,4.36-2.94c0-1.51-1.11-2.35-3.91-3l-3-.66c-4.27-.91-6.38-3.08-6.38-6.48,0-4.28,3.7-7.11,8.88-7.11,5.4,0,8.8,2.78,8.88,7H70.58c-.16-2-1.88-3.15-4.31-3.15s-4,1.14-4,2.86c0,1.44,1.12,2.24,3.79,2.85l2.82.6c4.65,1,6.68,3,6.68,6.53,0,4.5-3.66,7.35-9.42,7.35-5.58,0-9.13-2.66-9.28-7Z"/><path class="cls-4" d="M78.53,96.17V73h4.86V83.54h.14L92.25,73h5.41l-8.59,10.3,9.18,12.92h-5.8l-6.89-9.7-2.17,2.6v7.1Z"/><path class="cls-4" d="M99.81,74.59A2.51,2.51,0,1,1,102.32,77,2.44,2.44,0,0,1,99.81,74.59Zm.16,4.33h4.7V96.17H100Z"/><path class="cls-4" d="M113.74,75v4h3.19v3.54h-3.19v8.25c0,1.32.65,2,2,2a7.34,7.34,0,0,0,1.14-.08V96a11,11,0,0,1-2.23.19c-4.06,0-5.63-1.35-5.63-4.71V82.46h-2.43V78.92h2.43V75Z"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 66.58 60.17"><defs><style>.cls-1{fill:#bfe9ff;}.cls-2{fill:#56b4fc;}.cls-3{fill:#2552f0;}</style></defs><title>Asset 15</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M65,44.48l-9-3.36-16.19,6.1a18,18,0,0,1-6.59,1.19,19.25,19.25,0,0,1-6.59-1.19l-16.19-6.1-9,3.36A2.36,2.36,0,0,0,0,46.8a2.45,2.45,0,0,0,1.54,2.31L28.45,59.27a13.54,13.54,0,0,0,9.67,0L65,49.11a2.34,2.34,0,0,0,1.54-2.31A2.47,2.47,0,0,0,65,44.48Z"/><path class="cls-2" d="M65,27.74l-9-3.37-16.19,6.1a18,18,0,0,1-6.59,1.19,19.25,19.25,0,0,1-6.59-1.19l-16.19-6.1-9,3.37A2.34,2.34,0,0,0,0,30.05a2.45,2.45,0,0,0,1.54,2.31L28.45,42.52a13.54,13.54,0,0,0,9.67,0L65,32.36a2.34,2.34,0,0,0,1.54-2.31A2.45,2.45,0,0,0,65,27.74Z"/><path class="cls-3" d="M1.54,15.68,28.45,25.84a13.54,13.54,0,0,0,9.67,0L65,15.68a2.39,2.39,0,0,0,1.54-2.31A2.45,2.45,0,0,0,65,11.06L38.12.89a13.54,13.54,0,0,0-9.67,0L1.54,11.06A2.34,2.34,0,0,0,0,13.37,2.51,2.51,0,0,0,1.54,15.68Z"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 292.13 60.17"><defs><style>.cls-1,.cls-2,.cls-3{fill:#fff;}.cls-1{opacity:0.4;}.cls-2{opacity:0.7;}</style></defs><title>Asset 12</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M65,44.48l-9-3.36-16.19,6.1a18,18,0,0,1-6.59,1.19,19.25,19.25,0,0,1-6.59-1.19l-16.19-6.1-9,3.36A2.36,2.36,0,0,0,0,46.8a2.45,2.45,0,0,0,1.54,2.31L28.45,59.27a13.54,13.54,0,0,0,9.67,0L65,49.11a2.34,2.34,0,0,0,1.54-2.31A2.47,2.47,0,0,0,65,44.48Z"/><path class="cls-2" d="M65,27.74l-9-3.37-16.19,6.1a18,18,0,0,1-6.59,1.19,19.25,19.25,0,0,1-6.59-1.19l-16.19-6.1-9,3.37A2.34,2.34,0,0,0,0,30.05a2.45,2.45,0,0,0,1.54,2.31L28.45,42.52a13.54,13.54,0,0,0,9.67,0L65,32.36a2.34,2.34,0,0,0,1.54-2.31A2.45,2.45,0,0,0,65,27.74Z"/><path class="cls-3" d="M1.54,15.68,28.45,25.84a13.54,13.54,0,0,0,9.67,0L65,15.68a2.39,2.39,0,0,0,1.54-2.31A2.45,2.45,0,0,0,65,11.06L38.12.89a13.54,13.54,0,0,0-9.67,0L1.54,11.06A2.34,2.34,0,0,0,0,13.37,2.51,2.51,0,0,0,1.54,15.68Z"/><path class="cls-3" d="M87.13,39.56c.41,3.49,4.05,5.78,8.75,5.78s8-2.26,8-5.37c0-2.76-2-4.29-7.14-5.44l-5.52-1.2c-7.81-1.68-11.66-5.64-11.66-11.84,0-7.81,6.76-13,16.22-13,9.87,0,16.06,5.09,16.21,12.75h-8.31c-.3-3.58-3.44-5.75-7.88-5.75s-7.31,2.08-7.31,5.23c0,2.61,2.06,4.08,6.93,5.2L100.52,27c8.49,1.82,12.2,5.47,12.2,11.93,0,8.23-6.67,13.43-17.19,13.43-10.19,0-16.69-4.85-17-12.81Z"/><path class="cls-3" d="M116.21,42.58c0-5.73,4.41-9,12.25-9.52l7.93-.47V30.51c0-2.94-2-4.64-5.28-4.64s-5.23,1.58-5.64,3.9h-7.85c.32-6.11,5.52-10.31,13.87-10.31,8.08,0,13.34,4.17,13.34,10.52V51.63h-8.29V46.81h-.18c-1.76,3.35-5.67,5.32-9.6,5.32C120.77,52.13,116.21,48.25,116.21,42.58Zm20.18-2.49v-2.3l-6.64.42c-3.2.23-5,1.67-5,3.9s1.94,3.82,4.85,3.82C133.31,45.93,136.39,43.49,136.39,40.09Z"/><path class="cls-3" d="M149.14,42.58c0-5.73,4.41-9,12.25-9.52l7.94-.47V30.51c0-2.94-2.06-4.64-5.29-4.64s-5.23,1.58-5.64,3.9h-7.85c.33-6.11,5.53-10.31,13.87-10.31,8.08,0,13.34,4.17,13.34,10.52V51.63h-8.29V46.81h-.17c-1.77,3.35-5.67,5.32-9.61,5.32C153.7,52.13,149.14,48.25,149.14,42.58Zm20.19-2.49v-2.3l-6.64.42c-3.2.23-5,1.67-5,3.9s1.94,3.82,4.85,3.82C166.24,45.93,169.33,43.49,169.33,40.09Z"/><path class="cls-3" d="M191,39.56c.41,3.49,4.05,5.78,8.75,5.78s8-2.26,8-5.37c0-2.76-2-4.29-7.13-5.44L195,33.33c-7.81-1.68-11.66-5.64-11.66-11.84,0-7.81,6.76-13,16.22-13,9.87,0,16.07,5.09,16.21,12.75h-8.31c-.3-3.58-3.44-5.75-7.87-5.75s-7.32,2.08-7.32,5.23c0,2.61,2.06,4.08,6.93,5.2L204.37,27c8.49,1.82,12.2,5.47,12.2,11.93,0,8.23-6.67,13.43-17.19,13.43-10.19,0-16.69-4.85-16.95-12.81Z"/><path class="cls-3" d="M222,51.63V9.24h8.87V28.57h.27L247.06,9.24h9.87L241.24,28,258,51.63H247.41L234.84,33.92l-4,4.76v13Z"/><path class="cls-3" d="M260.87,12.24a4.58,4.58,0,1,1,4.58,4.43A4.45,4.45,0,0,1,260.87,12.24Zm.29,7.9h8.58V51.63h-8.58Z"/><path class="cls-3" d="M286.31,12.88v7.26h5.82V26.6h-5.82V41.67c0,2.41,1.17,3.56,3.7,3.56a13.71,13.71,0,0,0,2.09-.15V51.4a20.17,20.17,0,0,1-4.09.35c-7.4,0-10.28-2.47-10.28-8.61V26.6h-4.44V20.14h4.44V12.88Z"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 116.93 96.57"><defs><style>.cls-1,.cls-2,.cls-3{fill:#fff;}.cls-1{opacity:0.4;}.cls-2{opacity:0.7;}</style></defs><title>Asset 14</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M90.21,44.48l-9-3.36-16.19,6.1a17.93,17.93,0,0,1-6.59,1.19,19.19,19.19,0,0,1-6.58-1.19l-16.19-6.1-9,3.36a2.36,2.36,0,0,0-1.55,2.32,2.45,2.45,0,0,0,1.55,2.31L53.63,59.27a13.54,13.54,0,0,0,9.67,0L90.21,49.11a2.34,2.34,0,0,0,1.54-2.31A2.47,2.47,0,0,0,90.21,44.48Z"/><path class="cls-2" d="M90.21,27.74l-9-3.37-16.19,6.1a17.93,17.93,0,0,1-6.59,1.19,19.19,19.19,0,0,1-6.58-1.19l-16.19-6.1-9,3.37a2.34,2.34,0,0,0-1.55,2.31,2.45,2.45,0,0,0,1.55,2.31L53.63,42.52a13.54,13.54,0,0,0,9.67,0L90.21,32.36a2.34,2.34,0,0,0,1.54-2.31A2.45,2.45,0,0,0,90.21,27.74Z"/><path class="cls-3" d="M26.72,15.68,53.63,25.84a13.54,13.54,0,0,0,9.67,0L90.21,15.68a2.39,2.39,0,0,0,1.54-2.31,2.45,2.45,0,0,0-1.54-2.31L63.3.89a13.54,13.54,0,0,0-9.67,0L26.72,11.06a2.34,2.34,0,0,0-1.55,2.31A2.51,2.51,0,0,0,26.72,15.68Z"/><path class="cls-3" d="M4.68,89.55c.23,1.92,2.22,3.17,4.79,3.17s4.36-1.24,4.36-2.94c0-1.51-1.11-2.35-3.91-3l-3-.66C2.62,85.23.51,83.06.51,79.66c0-4.28,3.7-7.11,8.88-7.11,5.41,0,8.8,2.78,8.88,7H13.72c-.16-2-1.88-3.15-4.31-3.15s-4,1.14-4,2.86c0,1.44,1.13,2.24,3.8,2.85l2.82.6c4.64,1,6.67,3,6.67,6.53,0,4.5-3.65,7.35-9.41,7.35-5.58,0-9.14-2.66-9.28-7Z"/><path class="cls-3" d="M20.61,91.21c0-3.14,2.41-4.95,6.7-5.21l4.35-.26V84.6c0-1.61-1.13-2.54-2.9-2.54s-2.86.87-3.09,2.14H21.38c.17-3.35,3-5.65,7.59-5.65s7.3,2.29,7.3,5.76V96.17H31.74V93.53h-.1a5.93,5.93,0,0,1-5.26,2.91C23.1,96.44,20.61,94.32,20.61,91.21Zm11.05-1.37V88.59L28,88.81c-1.75.13-2.75.92-2.75,2.14s1.06,2.1,2.65,2.1C30,93.05,31.66,91.71,31.66,89.84Z"/><path class="cls-3" d="M38.64,91.21c0-3.14,2.41-4.95,6.71-5.21l4.34-.26V84.6c0-1.61-1.13-2.54-2.9-2.54s-2.86.87-3.08,2.14h-4.3c.18-3.35,3-5.65,7.59-5.65s7.31,2.29,7.31,5.76V96.17H49.77V93.53h-.1a5.93,5.93,0,0,1-5.26,2.91C41.13,96.44,38.64,94.32,38.64,91.21Zm11-1.37V88.59l-3.64.22c-1.75.13-2.75.92-2.75,2.14s1.06,2.1,2.66,2.1C48,93.05,49.69,91.71,49.69,89.84Z"/><path class="cls-3" d="M61.54,89.55c.23,1.92,2.22,3.17,4.8,3.17s4.36-1.24,4.36-2.94c0-1.51-1.11-2.35-3.91-3l-3-.66c-4.27-.91-6.38-3.08-6.38-6.48,0-4.28,3.7-7.11,8.88-7.11,5.4,0,8.8,2.78,8.88,7H70.58c-.16-2-1.88-3.15-4.31-3.15s-4,1.14-4,2.86c0,1.44,1.12,2.24,3.79,2.85l2.82.6c4.65,1,6.68,3,6.68,6.53,0,4.5-3.66,7.35-9.42,7.35-5.58,0-9.13-2.66-9.28-7Z"/><path class="cls-3" d="M78.53,96.17V73h4.86V83.54h.14L92.25,73h5.41l-8.59,10.3,9.18,12.92h-5.8l-6.89-9.7-2.17,2.6v7.1Z"/><path class="cls-3" d="M99.81,74.59A2.51,2.51,0,1,1,102.32,77,2.44,2.44,0,0,1,99.81,74.59Zm.16,4.33h4.7V96.17H100Z"/><path class="cls-3" d="M113.74,75v4h3.19v3.54h-3.19v8.25c0,1.32.65,2,2,2a7.34,7.34,0,0,0,1.14-.08V96a11,11,0,0,1-2.23.19c-4.06,0-5.63-1.35-5.63-4.71V82.46h-2.43V78.92h2.43V75Z"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 66.58 60.17"><defs><style>.cls-1,.cls-2,.cls-3{fill:#fff;}.cls-1{opacity:0.4;}.cls-2{opacity:0.7;}</style></defs><title>Asset 16</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M65,44.48l-9-3.36-16.19,6.1a18,18,0,0,1-6.59,1.19,19.25,19.25,0,0,1-6.59-1.19l-16.19-6.1-9,3.36A2.36,2.36,0,0,0,0,46.8a2.45,2.45,0,0,0,1.54,2.31L28.45,59.27a13.54,13.54,0,0,0,9.67,0L65,49.11a2.34,2.34,0,0,0,1.54-2.31A2.47,2.47,0,0,0,65,44.48Z"/><path class="cls-2" d="M65,27.74l-9-3.37-16.19,6.1a18,18,0,0,1-6.59,1.19,19.25,19.25,0,0,1-6.59-1.19l-16.19-6.1-9,3.37A2.34,2.34,0,0,0,0,30.05a2.45,2.45,0,0,0,1.54,2.31L28.45,42.52a13.54,13.54,0,0,0,9.67,0L65,32.36a2.34,2.34,0,0,0,1.54-2.31A2.45,2.45,0,0,0,65,27.74Z"/><path class="cls-3" d="M1.54,15.68,28.45,25.84a13.54,13.54,0,0,0,9.67,0L65,15.68a2.39,2.39,0,0,0,1.54-2.31A2.45,2.45,0,0,0,65,11.06L38.12.89a13.54,13.54,0,0,0-9.67,0L1.54,11.06A2.34,2.34,0,0,0,0,13.37,2.51,2.51,0,0,0,1.54,15.68Z"/></g></g></svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <title>Icon For Mail-opened</title>
3
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <rect opacity="0" x="0" y="0" width="24" height="24"></rect>
5
+ <path d="M6,2 L18,2 C18.5522847,2 19,2.44771525 19,3 L19,12 C19,12.5522847 18.5522847,13 18,13 L6,13 C5.44771525,13 5,12.5522847 5,12 L5,3 C5,2.44771525 5.44771525,2 6,2 Z M7.5,5 C7.22385763,5 7,5.22385763 7,5.5 C7,5.77614237 7.22385763,6 7.5,6 L13.5,6 C13.7761424,6 14,5.77614237 14,5.5 C14,5.22385763 13.7761424,5 13.5,5 L7.5,5 Z M7.5,7 C7.22385763,7 7,7.22385763 7,7.5 C7,7.77614237 7.22385763,8 7.5,8 L10.5,8 C10.7761424,8 11,7.77614237 11,7.5 C11,7.22385763 10.7761424,7 10.5,7 L7.5,7 Z" fill="#56B4FC"></path>
6
+ <path d="M3.79274528,6.57253826 L12,12.5 L20.2072547,6.57253826 C20.4311176,6.4108595 20.7436609,6.46126971 20.9053396,6.68513259 C20.9668779,6.77033951 21,6.87277228 21,6.97787787 L21,17 C21,18.1045695 20.1045695,19 19,19 L5,19 C3.8954305,19 3,18.1045695 3,17 L3,6.97787787 C3,6.70173549 3.22385763,6.47787787 3.5,6.47787787 C3.60510559,6.47787787 3.70753836,6.51099993 3.79274528,6.57253826 Z" fill="#1552f0"></path>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <title>Icon For Notifications#1</title>
3
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <path d="M17,12 L18.5,12 C19.3284271,12 20,12.6715729 20,13.5 C20,14.3284271 19.3284271,15 18.5,15 L5.5,15 C4.67157288,15 4,14.3284271 4,13.5 C4,12.6715729 4.67157288,12 5.5,12 L7,12 L7.5582739,6.97553494 C7.80974924,4.71225688 9.72279394,3 12,3 C14.2772061,3 16.1902508,4.71225688 16.4417261,6.97553494 L17,12 Z" fill="#1552f0"></path>
5
+ <rect fill="#56B4FC" x="10" y="16" width="4" height="4" rx="2"></rect>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <title>Icon For Outlet</title>
3
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <rect opacity="0" x="0" y="0" width="24" height="24"></rect>
5
+ <path d="M15,4 C15.5522847,4 16,4.44771525 16,5 L16,9 L14,9 L14,5 C14,4.44771525 14.4477153,4 15,4 Z M9,4 C9.55228475,4 10,4.44771525 10,5 L10,9 L8,9 L8,5 C8,4.44771525 8.44771525,4 9,4 Z" fill="#56B4FC"></path>
6
+ <path d="M13,16.9291111 L13,22 L11,22 L11,16.9291111 C7.60770586,16.4438815 5,13.5264719 5,10 L5,9 L19,9 L19,10 C19,13.5264719 16.3922941,16.4438815 13,16.9291111 Z" fill="#1552f0"></path>
7
+ </g>
8
+ </svg>